Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for none_of (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      // don't need to consider ".source"/".Source" because the nodes with this
      // suffix are skipped by the caller and will not be added to the graph.
      auto prefixes = GlobalOpPrefixes();
      if (std::none_of(prefixes->begin(), prefixes->end(), [&](std::string prefix) {
            return op_name.consume_front(prefix);
          })) {
        return errors::FailedPrecondition("op node '", op_name.str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            Caused by:
            java.lang.RuntimeException: oops
    """
        }
    
        def "optionally shows stack traces"() {
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.noneOf(TestStackTraceFilter)
            def exception = new Exception("ouch")
            exception.stackTrace = createStackTrace()
    
            expect:
            formatter.format(testDescriptor, [exception]) == """\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                            oneOf:
                              stringMatch:
                                exact: iss
                    - metadata:
                        filter: istio_authn
                        path:
                        - key: request.auth.claims
                        - key: iss
                        value:
                          listMatch:
                            oneOf:
                              stringMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

    void ConvertLSTMCellSimpleToFusedLSTM::SetCellLayerNormCoefficients() {
      cell_layer_norm_coefficients_ = none_;
    }
    
    void ConvertLSTMCellSimpleToFusedLSTM::SetInputLayerNormCoefficients() {
      input_layer_norm_coefficients_ = none_;
    }
    
    void ConvertLSTMCellSimpleToFusedLSTM::SetForgetLayerNormCoefficients() {
      forget_layer_norm_coefficients_ = none_;
    }
    void ConvertLSTMCellSimpleToFusedLSTM::SetOutputLayerNormCoefficients() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    func (s *ss) scanNumber(digits string, haveDigits bool) string {
    	if !haveDigits {
    		s.notEOF()
    		if !s.accept(digits) {
    			s.errorString("expected integer")
    		}
    	}
    	for s.accept(digits) {
    	}
    	return string(s.buf)
    }
    
    // scanRune returns the next rune value in the input.
    func (s *ss) scanRune(bitSize int) int64 {
    	s.notEOF()
    	r := s.getRune()
    	n := uint(bitSize)
    	x := (int64(r) << (64 - n)) >> (64 - n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                    - key: payload
                    - key: aud
                    value:
                      orMatch:
                        valueMatchers:
                        - listMatch:
                            oneOf:
                              orMatch:
                                valueMatchers:
                                - stringMatch:
                                    exact: audiences
                                - stringMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

        private boolean useNativeIntegrations;
        private File userHomeDir;
        private File nativeBaseDir;
        private final EnumSet<NativeFeatures> initializedFeatures = EnumSet.noneOf(NativeFeatures.class);
        private final EnumSet<NativeFeatures> enabledFeatures = EnumSet.noneOf(NativeFeatures.class);
    
        public enum NativeFeatures {
            FILE_SYSTEM_WATCHING {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    		},
    		{
    			name: "oneOf",
    			in: &apiextensions.JSONSchemaProps{
    				OneOf: []apiextensions.JSONSchemaProps{
    					{Type: "boolean"},
    					{Type: "string"},
    				},
    			},
    			expected: new(spec.Schema),
    			// not supported by openapi v2
    			// expected: &spec.Schema{
    			// 	SchemaProps: spec.SchemaProps{
    			// 		OneOf: []spec.Schema{
    			// 			*spec.BooleanProperty(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

    /**
     * For creating {@link DirectorySnapshot}s of directories.
     */
    public class DirectorySnapshotter {
        private static final EnumSet<FileVisitOption> DONT_FOLLOW_SYMLINKS = EnumSet.noneOf(FileVisitOption.class);
        private static final SymbolicLinkMapping EMPTY_SYMBOLIC_LINK_MAPPING = new SymbolicLinkMapping() {
    
            @Override
            public String remapAbsolutePath(Path path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    	Items                  *v1.JSONSchemaPropsOrArray                   `json:"items,omitempty"`
    	AllOf                  []JSONSchemaPropsApplyConfiguration          `json:"allOf,omitempty"`
    	OneOf                  []JSONSchemaPropsApplyConfiguration          `json:"oneOf,omitempty"`
    	AnyOf                  []JSONSchemaPropsApplyConfiguration          `json:"anyOf,omitempty"`
    	Not                    *JSONSchemaPropsApplyConfiguration           `json:"not,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
Back to top