Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 297 for repeated (0.13 sec)

  1. android/guava/src/com/google/common/collect/Multisets.java

       * order of the returned multiset matches that of the element set of {@code multiset1} followed by
       * the members of the element set of {@code multiset2} that are not contained in {@code
       * multiset1}, with repeated occurrences of the same element appearing consecutively.
       *
       * <p>Results are undefined if {@code multiset1} and {@code multiset2} are based on different
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

        if (name.empty()) continue;
    
        auto it_inserted_pair = inputs->insert({name, {}});
        if (!it_inserted_pair.second)
          return errors::FailedPrecondition(
              absl::StrCat("tensor ", name, " is repeated in the arrays flag"));
    
        ArrayInfo& info = it_inserted_pair.first->second;
        // Splitting the type and subtype into parts
        std::vector<std::string> parts =
            absl::StrSplit(type, absl::ByAnyChar("()"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

        void testMirrorStopOnFirstMatch() {
            // exact matches win first
            Mirror mirrorA2 = newMirror("a2", "a,b", "http://a2");
            Mirror mirrorA = newMirror("a", "a", "http://a");
            // make sure repeated entries are skipped
            Mirror mirrorA3 = newMirror("a", "a", "http://a3");
    
            Mirror mirrorB = newMirror("b", "b", "http://b");
            Mirror mirrorC = newMirror("c", "d,e", "http://de");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            succeeds("run")
        }
    
        private void expectConventionTypeDeprecationWarnings(int repeated = 1) {
            repeated.times {
                executer.expectDocumentedDeprecationWarning(
                    "The org.gradle.api.plugins.Convention type has been deprecated. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		wrapError(fmt.Errorf(format, args...))
    	}
    
    	switch verb {
    	default:
    		errorf("unknown directive: %s", verb)
    
    	case "go":
    		if f.Go != nil {
    			errorf("repeated go statement")
    			return
    		}
    		if len(args) != 1 {
    			errorf("go directive expects exactly one argument")
    			return
    		} else if !GoVersionRE.MatchString(args[0]) {
    			fixed := false
    			if !strict {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

                                   "' required for output list '",
                                   output_arg.name(), "' isn't an integer");
          int64_t repeats = mlir::cast<IntegerAttr>(repeats_attr).getInt();
    
          if (!output_arg.type_attr().empty()) {
            // Same type repeated "repeats" times.
            Attribute attr = attrs_[output_arg.type_attr()];
            if (!attr)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/validation/validation_test.go

    			config: schedulerNameNotSet,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeRequired,
    					Field: "profiles[1].schedulerName",
    				},
    			},
    		},
    		"repeated-scheduler-name": {
    			config: repeatedSchedulerName,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeDuplicate,
    					Field: "profiles[1].schedulerName",
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    === Output Annotations
    
    The `dependencies` task marks dependency trees with the following annotations:
    
    - `(*)`: Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    	dbMetricsMonitorsMu sync.Mutex
    	dbMetricsMonitors   map[string]struct{}
    )
    
    // startCompactorOnce start one compactor per transport. If the interval get smaller on repeated calls, the
    // compactor is replaced. A destroy func is returned. If all destroy funcs with the same transport are called,
    // the compactor is stopped.
    func startCompactorOnce(c storagebackend.TransportConfig, interval time.Duration) (func(), error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/edit.go

    module path and version pair. If the @v is omitted, a replacement without
    a version on the left side is dropped.
    
    The -use, -dropuse, -replace, and -dropreplace,
    editing flags may be repeated, and the changes are applied in the order given.
    
    The -go=version flag sets the expected Go language version.
    
    The -toolchain=name flag sets the Go toolchain to use.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top