Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,344 for valid (4.23 sec)

  1. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: same-namespace-valid-0-istio-autogenerated-k8s-gateway
      namespace: istio-system
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-same-namespace
      hosts:
      - '*'
      http:
      - name: istio-system.same-namespace-valid.0
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. internal/http/listener_test.go

    			testCase.serverAddrs,
    			TCPOptions{},
    		)
    		for _, err := range errs {
    			if err != nil {
    				if strings.Contains(err.Error(), "The requested address is not valid in its context") {
    					// Ignore if IP is unbindable.
    					continue nextTest
    				}
    				if strings.Contains(err.Error(), "bind: address already in use") {
    					continue nextTest
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

      }
    
      companion object {
        /** Arbitrary code point that's 2 bytes in UTF-8 and valid in IdnaMappingTable.txt. */
        private const val UNICODE_2 = 0x1a5
    
        /** Arbitrary code point that's 3 bytes in UTF-8 and valid in IdnaMappingTable.txt. */
        private const val UNICODE_3 = 0x2202
    
        /** Arbitrary code point that's 4 bytes in UTF-8 and valid in IdnaMappingTable.txt. */
        private const val UNICODE_4 = 0x1d11e
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/dlpack.cc

                                          int ndim) {
      bool valid = true;
      int64_t expected_stride = 1;
      for (int i = ndim - 1; i >= 0; --i) {
        // Empty tensors are always compact regardless of strides.
        if (shape_arr[i] == 0) return true;
        // Note that dimensions with size=1 can have any stride.
        if (shape_arr[i] != 1 && stride_arr[i] != expected_stride) {
          valid = false;
        }
        expected_stride *= shape_arr[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

                    result.getErrors().get(0), "'build.plugins.plugin.version' for test:mip must be a valid version");
            assertContains(
                    result.getErrors().get(1), "'build.plugins.plugin.version' for test:rmv must be a valid version");
            assertContains(
                    result.getErrors().get(2), "'build.plugins.plugin.version' for test:lmv must be a valid version");
            assertContains(
                    result.getErrors().get(3),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    	if len(valid) < len(claim.Status.ReservedFor) {
    		// This is not using a patch because we want the update to fail if anything
    		// changed in the meantime.
    		claim := claim.DeepCopy()
    		claim.Status.ReservedFor = valid
    
    		// When a ResourceClaim uses delayed allocation, then it makes sense to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. src/internal/zstd/zstd.go

    	readOneFrame bool
    
    	// True if the frame size is not known.
    	frameSizeUnknown bool
    
    	// The number of uncompressed bytes remaining in the current frame.
    	// If frameSizeUnknown is true, this is not valid.
    	remainingFrameSize uint64
    
    	// The number of bytes read from r up to the start of the current
    	// block, for error reporting.
    	blockOffset int64
    
    	// Buffered decompressed data.
    	buffer []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/math/big/natconv_test.go

    	{"0x1.0_", 0, true, nat{0x10}, 16, -1, errInvalSep, 0},
    
    	// valid: separators are not accepted for base != 0
    	{"0_", 10, false, nil, 10, 1, nil, '_'},
    	{"1__0", 10, false, nat{1}, 10, 1, nil, '_'},
    	{"0__8", 10, false, nil, 10, 1, nil, '_'},
    	{"xy_z_", 36, false, nat{33*36 + 34}, 36, 2, nil, '_'},
    
    	// valid, no decimal point
    	{"0", 0, false, nil, 10, 1, nil, 0},
    	{"0", 36, false, nil, 36, 1, nil, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentPluginIntegrationTest.groovy

            failure.assertHasCause "Failed to apply plugin class 'MySamplePlugin'"
            failure.assertHasCause '''Type MySamplePlugin is not a valid rule source:
    - Method register(org.gradle.platform.base.TypeBuilder<SampleComponent>, java.lang.String) is not a valid rule method: A method annotated with @ComponentType must have a single parameter of type org.gradle.platform.base.TypeBuilder.'''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	if err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, discoveryFile, "not a valid HTTPS URL or a file on disk"))
    		return allErrs
    	}
    
    	if u.Scheme == "" {
    		// URIs with no scheme should be treated as files
    		if _, err := os.Stat(discoveryFile); os.IsNotExist(err) {
    			allErrs = append(allErrs, field.Invalid(fldPath, discoveryFile, "not a valid HTTPS URL or a file on disk"))
    		}
    		return allErrs
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top