Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 124 for map1 (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	ctx := t.TestContext()
    	foo := obj.DeepCopyObject()
    	t.setObjectMeta(foo, t.namer(6))
    	objectMeta := t.getObjectMetaOrFail(foo)
    	objectMeta.SetAnnotations(map[string]string{"A": "1"})
    	if err := createFn(ctx, foo); err != nil {
    		t.Errorf("unexpected error: %v", err)
    		return
    	}
    
    	storedFoo, err := getFn(ctx, foo)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    	maxLengthSignerName := fmt.Sprintf("%s/%s.%s", maxLengthFQDN, repeatString("a", 63), repeatString("a", 253))
    	tests := map[string]struct {
    		csr  capi.CertificateSigningRequest
    		errs field.ErrorList
    	}{
    		"CSR with empty request data should fail": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                      op_codes, func_names, subgraph.tensors, op_loc, op_builder,
                      model_ptr));
    
        // Add the results to the value maps. There are two cases: 1. the result
        // tensor does not have min/max values, the original op result is used
        // directly; 2. the result tensor has some min/max values, a stats op is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        #     i = itr
        #     print(i)
        #   ag__.for_stmt(target)
        #
        # The mechanism lets us infer the type of the itr argument based on that of
        # target.
        self._for_loop_target_types = {}  # Maps body function name to iterated.
        self._for_loop_body_fns = {}  # Used only to avoid collisions.
    
      def res_name(self, ns, types_ns, name):
        name_str = str(name)
        if name_str in TFR_BUILTINS:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

      @VisibleForTesting
      static final class Whitespace extends NamedFastMatcher {
    
        // TABLE is a precomputed hashset of whitespace characters. MULTIPLIER serves as a hash function
        // whose key property is that it maps 25 characters into the 32-slot table without collision.
        // Basically this is an opportunistic fast implementation as opposed to "good code". For most
        // other use-cases, the reduction in readability isn't worth it.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    // Integer types:
    //   TypeWithSize   - maps an integer to a int type.
    //   Int32, UInt32, Int64, UInt64, TimeInMillis
    //                  - integers of known sizes.
    //   BiggestInt     - the biggest signed integer type.
    //
    // Command-line utilities:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    implementation project(':a')
                    implementation project(':b')
                }
                task resolve(type: InputTask) {
                    inValue = configurations.implementation.elements.map { files -> files.collect { it.asFile.text.toInteger() } }
                    outFile = file('out.txt')
                }
            """
    
            given:
            configurationCacheRun(":resolve")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    	}
    
    	// Start maps block IDs to the list of spills
    	// that go at the start of the block (but after any phis).
    	start := map[ID][]*Value{}
    	// After maps value IDs to the list of spills
    	// that go immediately after that value ID.
    	after := map[ID][]*Value{}
    
    	for i := range s.values {
    		vi := s.values[i]
    		spill := vi.spill
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    	proto.RegisterType((*CarpList)(nil), "k8s.io.apimachinery.pkg.apis.testapigroup.v1.CarpList")
    	proto.RegisterType((*CarpSpec)(nil), "k8s.io.apimachinery.pkg.apis.testapigroup.v1.CarpSpec")
    	proto.RegisterMapType((map[string]string)(nil), "k8s.io.apimachinery.pkg.apis.testapigroup.v1.CarpSpec.NodeSelectorEntry")
    	proto.RegisterType((*CarpStatus)(nil), "k8s.io.apimachinery.pkg.apis.testapigroup.v1.CarpStatus")
    }
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    	proto.RegisterType((*PodList)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodList")
    	proto.RegisterType((*PodSpec)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodSpec")
    	proto.RegisterMapType((map[string]string)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodSpec.NodeSelectorEntry")
    	proto.RegisterType((*PodStatus)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodStatus")
    }
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
Back to top