Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for fries (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('start') group('start') alignsTo('1.0')
                module('foo') alignsTo('1.5') byVirtualPlatform()
                module('bar') tries('1.0') alignsTo('1.5') byVirtualPlatform()
                module('fooBar') tries('1.0') alignsTo('1.5') byVirtualPlatform()
                module('baz') tries('1.0') alignsTo('1.5') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	// active.
    	future [3]memRecordCycle
    }
    
    // memRecordCycle
    type memRecordCycle struct {
    	allocs, frees           uintptr
    	alloc_bytes, free_bytes uintptr
    }
    
    // add accumulates b into a. It does not zero b.
    func (a *memRecordCycle) add(b *memRecordCycle) {
    	a.allocs += b.allocs
    	a.frees += b.frees
    	a.alloc_bytes += b.alloc_bytes
    	a.free_bytes += b.free_bytes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				},
    				postfilter: result{
    					status: framework.NewStatus(framework.Unschedulable, `no new claims to deallocate`),
    				},
    			},
    		},
    		"wrong-topology-delayed-allocation": {
    			// PostFilter tries to get the pod scheduleable by
    			// deallocating the claim.
    			pod:    podWithClaimName,
    			claims: []*resourcev1alpha2.ResourceClaim{allocatedDelayedClaimWithWrongTopology},
    			want: want{
    				filter: perNodeResult{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // sweeps small-object spans for the same object size until it frees at least
    // one object. When a goroutine needs to allocate large-object span from heap,
    // it sweeps spans until it frees at least that many pages into heap. There is
    // one case where this may not suffice: if a goroutine sweeps and frees two
    // nonadjacent one-page spans to the heap, it will allocate a new two-page
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/time/time_test.go

    // and that we also don't panic.
    func TestConcurrentTimerReset(t *testing.T) {
    	const goroutines = 8
    	const tries = 1000
    	var wg sync.WaitGroup
    	wg.Add(goroutines)
    	timer := NewTimer(Hour)
    	for i := 0; i < goroutines; i++ {
    		go func(i int) {
    			defer wg.Done()
    			for j := 0; j < tries; j++ {
    				timer.Reset(Hour + Duration(i*j))
    			}
    		}(i)
    	}
    	wg.Wait()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	dsw.DeletePod(types.UniquePodName(podName1), generatedVolumeName, nodeName1)
    
    	waitForVolumeRemovedFromNode(t, generatedVolumeName, nodeName1, asw)
    
    	// Add a second pod which tries to attach the volume to a different node.
    	generatedVolumeName, podAddErr = dsw.AddPod(types.UniquePodName(podName2), controllervolumetesting.NewPod(podName2, podName2), volumeSpec, nodeName2)
    	if podAddErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // TF_NewWhile() call.
    TF_CAPI_EXPORT extern void TF_FinishWhile(const TF_WhileParams* params,
                                              TF_Status* status,
                                              TF_Output* outputs);
    
    // Frees `params`s resources without building a while loop. `params` is no
    // longer valid after this returns. Either this or TF_FinishWhile() must be
    // called after a successful TF_NewWhile() call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "fires build operation when emitting added callback and reestablishes user code context"() {
            given:
            containerSupportsBuildOperations()
    
            UserCodeApplicationId id1 = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	}
    	// Pick a random other P to preempt.
    	if gomaxprocs <= 1 {
    		return
    	}
    	gp := getg()
    	if gp == nil || gp.m == nil || gp.m.p == 0 {
    		return
    	}
    	myID := gp.m.p.ptr().id
    	for tries := 0; tries < 5; tries++ {
    		id := int32(cheaprandn(uint32(gomaxprocs - 1)))
    		if id >= myID {
    			id++
    		}
    		p := allp[id]
    		if p.status != _Prunning {
    			continue
    		}
    		if preemptone(p) {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      Status CreateClusters();
    
      Status DumpDebugInfo();
    
      bool IsCompilationCandidate(Node* n) const {
        return compilation_candidates_.find(n) != compilation_candidates_.end();
      }
    
      // Tries to contract the edge from cluster `from` to cluster `to`.  Returns
      // true if successful.
      absl::StatusOr<bool> TryToContractEdge(Cluster* from, Cluster* to);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top