Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,312 for valid (0.05 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InterfaceBackedManagedTypeIntegrationTest.groovy

            buildScript '''
                apply type: RulePlugin
            '''
    
            then:
            fails "tasks"
    
            and:
            failure.assertHasCause """Type Person is not a valid managed type:
    - Property 'name' is not valid: it must have either only abstract accessor methods or only implemented accessor methods"""
        }
    
        def "non-mutative non-abstract methods implemented as default interface methods are not allowed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      // operations [`begin`, `end`) will be rescheduled before operation `insert`.
      // A valid `RematSpec` requires begin <= end <= insert <= number of
      // operations. Note that (1) `end` is exclusive -- begin == end signifies a
      // trivial RematSpec (no operation will be rescheduled), (2) the
      // zero-initialized RematSpec {} is trivial and always valid.
      struct RematSpec {
        int begin;
        int end;
        int insert;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InternetDomainName.java

      /**
       * Validation method used by {@code from} to ensure that the domain name is syntactically valid
       * according to RFC 1035.
       *
       * @return Is the domain name syntactically valid?
       */
      private static boolean validateSyntax(List<String> parts) {
        int lastIndex = parts.size() - 1;
    
        // Validate the last part specially, as it has different syntax rules.
    
        if (!validatePart(parts.get(lastIndex), true)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    		if name[i] == '.' {
    			break
    		}
    	}
    	return name[:i]
    }
    
    func funcfile(f funcInfo, fileno int32) string {
    	datap := f.datap
    	if !f.valid() {
    		return "?"
    	}
    	// Make sure the cu index and file offset are valid
    	if fileoff := datap.cutab[f.cuOffset+uint32(fileno)]; fileoff != ^uint32(0) {
    		return gostringnocopy(&datap.filetab[fileoff])
    	}
    	// pcln section is corrupt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

      /**
       * Validation method used by {@code from} to ensure that the domain name is syntactically valid
       * according to RFC 1035.
       *
       * @return Is the domain name syntactically valid?
       */
      private static boolean validateSyntax(List<String> parts) {
        int lastIndex = parts.size() - 1;
    
        // Validate the last part specially, as it has different syntax rules.
    
        if (!validatePart(parts.get(lastIndex), true)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		},
    		"kubeconfig exist and is valid": {
    			existingKubeConfig: config,
    			kubeConfig:         config,
    			expectedError:      false,
    		},
    		"kubeconfig exist and is valid even if its CA contains whitespace": {
    			existingKubeConfig: configWhitespace,
    			kubeConfig:         config,
    			expectedError:      false,
    		},
    		"kubeconfig exist and is valid even if its CA is provided as an external file": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. src/net/http/cookie_test.go

    		{&Cookie{Name: "valid-partitioned", Value: "foo", Path: "/", Secure: true, Partitioned: true}, true},
    	}
    
    	for _, tt := range tests {
    		err := tt.cookie.Valid()
    		if err != nil && tt.valid {
    			t.Errorf("%#v.Valid() returned error %v; want nil", tt.cookie, err)
    		}
    		if err == nil && !tt.valid {
    			t.Errorf("%#v.Valid() returned nil; want error", tt.cookie)
    		}
    	}
    }
    
    func BenchmarkCookieString(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. cmd/bucket-object-lock.go

    	if objInfo.DeleteMarker {
    		return false
    	}
    
    	lhold := objectlock.GetObjectLegalHoldMeta(objInfo.UserDefined)
    	if lhold.Status.Valid() && lhold.Status == objectlock.LegalHoldOn {
    		return true
    	}
    
    	ret := objectlock.GetObjectRetentionMeta(objInfo.UserDefined)
    	if ret.Mode.Valid() && (ret.Mode == objectlock.RetCompliance || ret.Mode == objectlock.RetGovernance) {
    		t, err := objectlock.UTCNowNTP()
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pcln.go

    }
    
    // numPCData returns the number of PCData syms for the FuncInfo.
    // NB: Preload must be called on valid FuncInfos before calling this function.
    func numPCData(ldr *loader.Loader, s loader.Sym, fi loader.FuncInfo) uint32 {
    	if !fi.Valid() {
    		return 0
    	}
    	numPCData := uint32(ldr.NumPcdata(s))
    	if fi.NumInlTree() > 0 {
    		if numPCData < abi.PCDATA_InlTreeIndex+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_drq.mlir

        %conv = "tf.Conv2D"(%arg0, %arg1) {attr_map = "0:strides,1:use_cudnn_on_gpu,2:padding,3:explicit_paddings,4:dilations", data_format = "NHWC", device = "", dilations = [1, 2, 2, 1], explicit_paddings = [], padding = "VALID", strides = [1, 1, 2, 1], use_cudnn_on_gpu = true} : (tensor<1x2x2x3xf32>, tensor<2x3x3x2xf32>) -> tensor<*xf32>
        return %conv : tensor<*xf32>
      }
    
    // CHECK-LABEL: func @conv
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top