Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 214 for gives (0.28 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

       * provided that the function is capable of accepting null input. The transformed multimap might
       * contain null values, if the function sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
       * is. The {@code equals} and {@code hashCode} methods of the returned multimap are meaningless,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multimaps.java

       * provided that the function is capable of accepting null input. The transformed multimap might
       * contain null values, if the function sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
       * is. The {@code equals} and {@code hashCode} methods of the returned multimap are meaningless,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// that can accumulate on a P before updating gcController.stackSize.
    	maxStackScanSlack = 8 << 10
    
    	// memoryLimitMinHeapGoalHeadroom is the minimum amount of headroom the
    	// pacer gives to the heap goal when operating in the memory-limited regime.
    	// That is, it'll reduce the heap goal by this many extra bytes off of the
    	// base calculation, at minimum.
    	memoryLimitMinHeapGoalHeadroom = 1 << 20
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
      // Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
      bool labelPods = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. src/time/time.go

    	}
    	return unixTime(sec, int32(nsec))
    }
    
    // UnixMilli returns the local Time corresponding to the given Unix time,
    // msec milliseconds since January 1, 1970 UTC.
    func UnixMilli(msec int64) Time {
    	return Unix(msec/1e3, (msec%1e3)*1e6)
    }
    
    // UnixMicro returns the local Time corresponding to the given Unix time,
    // usec microseconds since January 1, 1970 UTC.
    func UnixMicro(usec int64) Time {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	//    from w2 ResultCh it could have happened that its buffer was also
    	//    filling in and given we no longer had timeBudget (consumed in (1))
    	//    trying to put next item was simply breaking the watch
    	// Using fakeTimeBudget gives us always a budget to wait and have a test
    	// pick up something from ResultCh in the meantime.
    	cacher.dispatchTimeoutBudget = &fakeTimeBudget{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

        }
    
        def "gives details about failing matches when it cannot select default configuration when no match is found and default configuration is not consumable"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                           return TryToContractEdge(from, to);
                         }).status());
    
      // Check that the conclusion made above (that iterating over the graph once in
      // post order gives a maximal clustering) holds.  Once the linear time
      // post-order scheme has been battle tested we can move this to happen only in
      // debug builds.
      VLOG(2) << "Checking idempotence";
      TF_ASSIGN_OR_RETURN(bool changed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	}
    
    	return apiResourceList, nil
    }
    
    // An interface to see if one storage supports override its default verb for monitoring
    type StorageMetricsOverride interface {
    	// OverrideMetricsVerb gives a storage object an opportunity to override the verb reported to the metrics endpoint
    	OverrideMetricsVerb(oldVerb string) (newVerb string)
    }
    
    // An interface to see if an object supports swagger documentation as a method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	t.Helper()
    	testenv.MustHaveGoBuild(t)
    	testenv.SkipIfShortAndSlow(t)
    
    	return &testgoData{t: t}
    }
    
    // must gives a fatal error if err is not nil.
    func (tg *testgoData) must(err error) {
    	tg.t.Helper()
    	if err != nil {
    		tg.t.Fatal(err)
    	}
    }
    
    // check gives a test non-fatal error if err is not nil.
    func (tg *testgoData) check(err error) {
    	tg.t.Helper()
    	if err != nil {
    		tg.t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top