Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,132 for valid (0.05 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/config/kube/gateway/conditions.go

    	// OriginalReference contains the original reference
    	OriginalReference k8s.ParentReference
    	// DeniedReason, if present, indicates why the reference was not valid
    	DeniedReason *ParentError
    	// RouteError, if present, indicates why the reference was not valid
    	RouteError *ConfigError
    }
    
    func createRouteStatus(parentResults []RouteParentResult, obj config.Config, currentParents []k8s.RouteParentStatus) []k8s.RouteParentStatus {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    		return fmt.Errorf("%v is not a valid IP", addr)
    	}
    
    	return nil
    }
    
    func ValidatePartialWildCard(host string) error {
    	if strings.Contains(host, "*") && len(host) != 1 && !strings.HasPrefix(host, "*.") {
    		return fmt.Errorf("partial wildcard %q not allowed", host)
    	}
    	return nil
    }
    
    // validates that hostname in ns/<hostname> is a valid hostname according to
    // API specs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption_test.go

    	testCases := []struct {
    		desc string
    		in   *apiserver.KMSConfiguration
    		want field.ErrorList
    	}{{
    		desc: "valid v1 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v1"},
    		want: field.ErrorList{},
    	}, {
    		desc: "valid v2 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v2"},
    		want: field.ErrorList{},
    	}, {
    		desc: "invalid api version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// This is required if ProxyProtocol is HTTPConnect or GRPC.
    	// +optional
    	Transport *Transport `json:"transport,omitempty"`
    }
    
    // ProtocolType is a set of valid values for Connection.ProtocolType
    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. src/crypto/x509/oid_test.go

    }
    
    func TestOID(t *testing.T) {
    	for _, v := range oidTests {
    		oid, ok := newOIDFromDER(v.raw)
    		if ok != v.valid {
    			t.Errorf("newOIDFromDER(%v) = (%v, %v); want = (OID, %v)", v.raw, oid, ok, v.valid)
    			continue
    		}
    
    		if !ok {
    			continue
    		}
    
    		if str := oid.String(); str != v.str {
    			t.Errorf("(%#v).String() = %v, want; %v", oid, str, v.str)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            result.assertTasksExecuted(":wrapper")
            wrapperJar.md5Hash == old(wrapperJar.md5Hash)
            wrapperProperties.text == old(wrapperProperties.text)
        }
    
        def "generated wrapper scripts for valid distribution types from command-line"() {
            when:
            run "wrapper", "--gradle-version", "2.13", "--distribution-type", distributionType, "--no-validate-url"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

            op, "result for current op has more than 1 use");
      }
      // Make sure Conv2D has 'VALID' padding.
      if (op->template getAttrOfType<StringAttr>("padding").getValue() != "VALID") {
        return rewriter.notifyMatchFailure(op,
                                           "Conv2D op doesn't have valid padding");
      }
      // Make sure dilations are all ones if set.
      const ArrayAttr& dilations =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/go/types/check.go

    type Checker struct {
    	// package information
    	// (initialized by NewChecker, valid for the life-time of checker)
    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	fset *token.FileSet
    	pkg  *Package
    	*Info
    	version goVersion              // accepted language version
    	nextID  uint64                 // unique Id for type parameters (first valid Id is 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top