Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 636 for repeated (0.58 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/pack/pack.go

    func (ar *Archive) addFile(fd FileLike) {
    	// Format the entry.
    	// First, get its info.
    	info, err := fd.Stat()
    	if err != nil {
    		log.Fatal(err)
    	}
    	// mtime, uid, gid are all zero so repeated builds produce identical output.
    	mtime := int64(0)
    	uid := 0
    	gid := 0
    	ar.a.AddEntry(archive.EntryNativeObj, info.Name(), mtime, uid, gid, info.Mode(), info.Size(), fd)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.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. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

            // TODO currently this is first wins, but really we should take the latest by comparing either the
            // snapshot timestamp, or some other timestamp later encoded into the metadata.
            // TODO this needs to be repeated here so the merging doesn't interfere with the written metadata
            //  - we'd be much better having a pristine input, and an ongoing metadata for merging instead
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top