Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 510 for necessarily (0.46 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         *      typically a URL pointing to an issue with the relevant third-party plugin. The actual value
         *      is ignored, the parameter is only present to remind us that a followup is necessary, and
         *      to record how it will happen.
         */
        SmokeTestGradleRunner expectDeprecationWarning(String warning, String followup) {
            if (followup == null || followup.isBlank()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			types := []runtime.Object{&metav1.Status{}, &metav1.APIGroup{}}
    			obj := types[c.Rand.Intn(len(types))]
    			c.Fuzz(obj)
    
    			// Find a codec for converting the object to raw bytes.  This is necessary for the
    			// api version and kind to be correctly set be serialization.
    			var codec = apitesting.TestCodec(codecs, metav1.SchemeGroupVersion)
    
    			// Convert the object to raw bytes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/runtime/pinner.go

    	if pin {
    		if pinState.isPinned() {
    			// multiple pins on same object, set multipin bit
    			pinState.setMultiPinned(true)
    			// and increase the pin counter
    			// TODO(mknyszek): investigate if systemstack is necessary here
    			systemstack(func() {
    				offset := objIndex * span.elemsize
    				span.incPinCounter(offset)
    			})
    		} else {
    			// set pin bit
    			pinState.setPinned(true)
    		}
    	} else {
    		// unpin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/runtime/mcache.go

    	// assume that all of its slots will get used, so this makes
    	// heapLive an overestimate.
    	//
    	// When the span gets uncached, we'll fix up this overestimate
    	// if necessary (see releaseAll).
    	//
    	// We pick an overestimate here because an underestimate leads
    	// the pacer to believe that it's in better shape than it is,
    	// which appears to lead to more memory used. See #53738 for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/runtime/map_faststr.go

    					return add(unsafe.Pointer(b), dataOffset+abi.MapBucketCount*2*goarch.PtrSize+i*uintptr(t.ValueSize))
    				}
    			}
    			return unsafe.Pointer(&zeroVal[0])
    		}
    		// long key, try not to do more comparisons than necessary
    		keymaybe := uintptr(abi.MapBucketCount)
    		for i, kptr := uintptr(0), b.keys(); i < abi.MapBucketCount; i, kptr = i+1, add(kptr, 2*goarch.PtrSize) {
    			k := (*stringStruct)(kptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device.cc

      // We have multiple device to device streams to allow for some concurrency
      // between transfers. The particular value of '4' is chosen fairly
      // arbitrarily. It may be necessary to make this tunable via
      // XlaDevice::Options.
      static constexpr int kNumDeviceToDeviceStreams = 4;
      device_to_device_streams_.resize(kNumDeviceToDeviceStreams);
    }
    
    XlaDevice::~XlaDevice() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

            def tasksContainerCallbackBuildOps = findCallbackActionBuildOps('task container callback')
            tasksContainerCallbackBuildOps.size > 0 // not necessary to track exact count here; adding removing build-in tasks should not break this
            tasksContainerCallbackBuildOps.every { it.details.applicationId == callbackPluginApplication.details.applicationId }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_monitor.go

    	updateEvent
    	deleteEvent
    )
    
    type event struct {
    	eventType eventType
    	obj       interface{}
    	oldObj    interface{}
    	gvr       schema.GroupVersionResource
    }
    
    // QuotaMonitor contains all necessary information to track quotas and trigger replenishments
    type QuotaMonitor struct {
    	// each monitor list/watches a resource and determines if we should replenish quota
    	monitors    monitors
    	monitorLock sync.RWMutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/named.go

    	// loader may be provided to lazily load type parameters, underlying type, and methods.
    	loader func(*Named) (tparams []*TypeParam, underlying Type, methods []*Func)
    }
    
    // instance holds information that is only necessary for instantiated named
    // types.
    type instance struct {
    	orig            *Named    // original, uninstantiated type
    	targs           *TypeList // type arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/go-version/LICENSE

            Contributions.
    
         This License does not grant any rights in the trademarks, service marks, or
         logos of any Contributor (except as may be necessary to comply with the
         notice requirements in Section 3.4).
    
    2.4. Subsequent Licenses
    
         No Contributor makes additional grants as a result of Your choice to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top