Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for gives (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/proxy/nftables/proxier.go

    	)
    
    	// The part of name before the "__" can be up to 205 characters (as with
    	// servicePortChainNameBase above). An IPv6 address can be up to 39 characters, and
    	// a port can be up to 5 digits, plus 3 punctuation characters gives a max total
    	// length of 252, well over chainNameBaseLengthMax (240), so truncation is
    	// theoretically possible (though incredibly unlikely).
    	return hashAndTruncate(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	// fields describe a function whose first argument is the receiver,
    	// and only exported methods are accessible.
    	//
    	// For an interface type, the returned Method's Type field gives the
    	// method signature, without a receiver, and the Func field is nil.
    	//
    	// Methods are sorted in lexicographic order.
    	Method(int) Method
    
    	// MethodByName returns the method with that name in the type's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    }
    
    // Returns a TF_CastOp to F32. This function is used for CastOps that are
    // intermediate nodes in a TableGen pattern result. In such a case, the
    // destination type is not inferred and must be given explicitly.
    //
    // Preconditions: The given value must have a ShapedType.
    static Value CreateTFCastOpF32(OpBuilder *builder, Location loc, Value x,
                                   BoolAttr truncate) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    			prof.cyclesLost += cycles
    			return
    		} else {
    			prof.cyclesLost += prev
    		}
    	}
    	// Saving the *mutex as a uintptr is safe because:
    	//  - lockrank_on.go does this too, which gives it regular exercise
    	//  - the lock would only move if it's stack allocated, which means it
    	//      cannot experience multi-M contention
    	prof.pending = uintptr(unsafe.Pointer(l))
    	prof.cycles = cycles
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top