Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for _abc (0.38 sec)

  1. src/net/http/cookiejar/jar.go

    		return "/" // Path is empty or malformed.
    	}
    
    	i := strings.LastIndex(path, "/") // Path starts with "/", so i != -1.
    	if i == 0 {
    		return "/" // Path has the form "/abc".
    	}
    	return path[:i] // Path is either of form "/abc/xyz" or "/abc/xyz/".
    }
    
    // newEntry creates an entry from an http.Cookie c. now is the current time and
    // is compared to c.Expires to determine deletion of c. defPath and host are the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/volume_manager_test.go

    	if err != nil {
    		t.Fatalf("can't make a temp dir: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    	podManager := kubepod.NewBasicPodManager()
    
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "abc",
    			Namespace: "nsA",
    			UID:       "1234",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name: "container1",
    					VolumeMounts: []v1.VolumeMount{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    				if got := err.Error(); got != want {
    					t.Fatalf("want error message %q, got %q", want, got)
    				}
    			},
    		},
    		{
    			in:   FromString(""),
    			want: []byte{0x40},
    		},
    		{
    			in:   FromString("abc"),
    			want: []byte{0x43, 'a', 'b', 'c'},
    		},
    		{
    			in:   FromInt32(0), // min positive integer representable in one byte
    			want: []byte{0x00},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				Generic: schema.Generic{
    					Type: "object",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{Rule: "fakeFunction('abc') == 'ABC'"},
    					},
    				},
    			},
    			unmodified: true,
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1.substring(4, 10).trim() == 'takes'",
    				"self.val1.upperAscii() == 'ROOK TAKES 👑'",
    				"self.val1.lowerAscii() == 'rook takes 👑'",
    
    				"'%d %s %f %s %s'.format([1, 'abc', 1.0, duration('1m'), timestamp('2000-01-01T00:00:00.000Z')]) == '1 abc 1.000000 60s 2000-01-01T00:00:00Z'",
    				"'%e'.format([3.14]) == '3.140000 × 10⁰⁰'",
    				"'%o %o %o'.format([7, 8, 9]) == '7 10 11'",
    				"'%b %b %b'.format([7, 8, 9]) == '111 1000 1001'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            input_tensor=ops.convert_to_tensor(input_data)
        )
    
        self.assertAllClose(expected_outputs, got_outputs, atol=0.05)
    
      @parameterized.parameters(
          ('abc,cde->abde', quant_opts_pb2.XLA),
          ('abc,dce->abde', quant_opts_pb2.XLA),
      )
      def test_einsum_ptq_model(
          self,
          equation: str,
          target_opset: quant_opts_pb2.OpSet,
      ):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

        def "cannot declare option for task dependency of another task"() {
            given:
            buildFile << """
                apply plugin: 'java'
            """
    
            when:
            runAndFail 'check', '--tests', 'abc'
    
            then:
            failure.assertHasDescription('Problem configuring task :check from command line.')
            failure.assertHasCause("Unknown command-line option '--tests'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. docs/en/data/people.yml

      url: https://github.com/axel584
    - login: ivan-abc
      count: 4
      avatarUrl: https://avatars.githubusercontent.com/u/36765187?u=c6e0ba571c1ccb6db9d94e62e4b8b5eda811a870&v=4
      url: https://github.com/ivan-abc
    - login: divums
      count: 3
      avatarUrl: https://avatars.githubusercontent.com/u/1397556?v=4
      url: https://github.com/divums
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

              func_aliases.values(), [quantize_model_test_base.FUNC_ALIAS]
          )
    
      @parameterized.parameters(
          testing.parameter_combinations([{
              'equation': (
                  'abc,cde->abde',
                  'abc,dce->abde',
              ),
          }])
      )
      def test_einsum_ptq_model(
          self,
          equation: str,
      ):
        _, y_shape, bias_shape, x_signature, y_signature = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top