Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,312 for valid (0.04 sec)

  1. cmd/erasure-healing-common_test.go

    				nil, nil, nil, nil, nil, nil, nil, nil,
    			},
    			_tamperBackend: noTamper,
    		},
    		{
    			modTimes:     modTimesThreeNone,
    			expectedTime: threeNanoSecs,
    			errs: []error{
    				// Disks that have a valid xl.meta.
    				nil, nil, nil, nil, nil, nil, nil, nil,
    				nil, nil, nil, nil, nil,
    				// Some disks can't access xl.meta.
    				errFileNotFound, errDiskAccessDenied, errDiskNotFound,
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/encoding/gob/encode.go

    type encEngine struct {
    	instr []encInstr
    }
    
    const singletonField = 0
    
    // valid reports whether the value is valid and a non-nil pointer.
    // (Slices, maps, and chans take care of themselves.)
    func valid(v reflect.Value) bool {
    	switch v.Kind() {
    	case reflect.Invalid:
    		return false
    	case reflect.Pointer:
    		return !v.IsNil()
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. cmd/object-api-utils_test.go

    func TestIsValidBucketName(t *testing.T) {
    	testCases := []struct {
    		bucketName string
    		shouldPass bool
    	}{
    		// cases which should pass the test.
    		// passing in valid bucket names.
    		{"lol", true},
    		{"1-this-is-valid", true},
    		{"1-this-too-is-valid-1", true},
    		{"this.works.too.1", true},
    		{"1234567", true},
    		{"123", true},
    		{"s3-eu-west-1.amazonaws.com", true},
    		{"ideas-are-more-powerful-than-guns", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedScalarCollectionsIntegrationTest.groovy

            failure.assertHasCause("""A model element of type: 'Container' can not be constructed.
    Its property 'java.util.$type<Thing> items' is not a valid scalar collection
    A scalar collection can not contain 'Thing's
    A valid scalar collection takes the form of List<T> or Set<T> where 'T' is one of (String, Boolean, Character, Byte, Short, Integer, Float, Long, Double, BigInteger, BigDecimal, File)""")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/ComponentTypeModelRuleExtractorTest.groovy

            when:
            extract(ruleMethod)
    
            then:
            def ex = thrown(InvalidModelRuleDeclarationException)
            ex.message == """Type ${fullyQualifiedNameOf(ruleClass)} is not a valid rule source:
    - Method ${ruleDescription} is not a valid rule method: ${expectedMessage}"""
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/branches.go

    // declared in block b or any of its enclosing blocks. The result is nil
    // if the label is not defined, or doesn't match a valid labeled statement.
    func (ls *labelScope) gotoTarget(b *block, name string) *LabeledStmt {
    	if l := ls.labels[name]; l != nil {
    		l.used = true // even if it's not a valid target
    		for ; b != nil; b = b.parent {
    			if l.parent == b {
    				return l.lstmt
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

    metadata:
      creationTimestamp: null
      name: invalid-backendRef-kind
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: 'referencing unsupported backendRef: group "" kind "GcsBucket"'
          reason: InvalidKind
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server_bootstrap_test.go

    	}
    
    	// if m.Current() == nil, then we try again and get a valid
    	// client
    	server.backdate = 0
    	server.SetExpectUserAgent("FirstClient")
    	if ok, err := r.RotateCerts(); !ok || err != nil {
    		t.Fatalf("unexpected rotation err: %t %v", ok, err)
    	}
    	if cert := m.Current(); cert == nil {
    		t.Fatalf("Unexpected cert, should be valid: %#v", cert)
    	}
    	fi = getFileInfo(testDir)
    	if len(fi) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/shape-inference.mlir

      %0 = "tfl.conv_2d"(%arg0, %arg1, %arg2) {dilation_h_factor = 2 : i32, dilation_w_factor = 2 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 1 : i32, stride_w = 1 : i32} : (tensor<1x112x80x128xf32>, tensor<128x3x3x128xf32>, tensor<128xf32>)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta_test.go

    			ExpectedErr: "x/b",
    		},
    		"valid removing finalizers": {
    			Old:         metav1.ObjectMeta{Name: "test", ResourceVersion: "1", DeletionTimestamp: &metav1.Time{}, Finalizers: []string{"x/a", "y/b"}},
    			New:         metav1.ObjectMeta{Name: "test", ResourceVersion: "1", DeletionTimestamp: &metav1.Time{}, Finalizers: []string{"x/a"}},
    			ExpectedErr: "",
    		},
    		"valid adding finalizers for objects not being deleted": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 17.8K bytes
    - Viewed (0)
Back to top