Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 325 for other2 (0.42 sec)

  1. src/cmd/go/internal/modload/load.go

    			// ones! — is not a Go package, and we can't resolve it to a package
    			// path because that path could plausibly be provided by some other
    			// module.
    			//
    			// Any other error indicates that the package “exists” (at least in the
    			// sense that it cannot exist in any other module), but has some other
    			// problem (such as a syntax error).
    			return "", err
    		}
    	}
    
    	for _, mod := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            thrown InvalidUserDataException
        }
    
        def "reports indirect cycle in extended configurations"() {
            def configuration = conf()
            def conf1 = conf("other")
            def conf2 = conf("other2")
    
            when:
            configuration.extendsFrom(conf1)
            conf1.extendsFrom(conf2)
            conf2.extendsFrom(configuration)
    
            then:
            thrown InvalidUserDataException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    void MarkForCompilationPassImpl::Cluster::Merge(Cluster* other) {
      // We keep our own cycles_graph_node_id_ to mirror what GraphCycles does.
    
      // Clearing out data structures in `other` is just a memory saving
      // optimization and not needed for correctness.
    
      cluster_size_ += other->cluster_size_;
      effective_cluster_size_ += other->effective_cluster_size_;
      has_functional_control_flow_ |= other->has_functional_control_flow_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public CharMatcher and(CharMatcher other) {
          return other.matches(match) ? super.and(other) : other;
        }
    
        @Override
        public CharMatcher or(CharMatcher other) {
          return other.matches(match) ? any() : this;
        }
    
        @GwtIncompatible // used only from other GwtIncompatible code
        @Override
        void setBits(BitSet table) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public CharMatcher and(CharMatcher other) {
          return other.matches(match) ? super.and(other) : other;
        }
    
        @Override
        public CharMatcher or(CharMatcher other) {
          return other.matches(match) ? any() : this;
        }
    
        @GwtIncompatible // used only from other GwtIncompatible code
        @Override
        void setBits(BitSet table) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.getOrElse(toMutable(["other"])) == toMutable(["other"])
    
            when:
            property.get()
    
            then:
            def e = thrown(MissingValueException)
            e.message == "Cannot query the value of ${displayName} because it has no value available."
        }
    
        def "property has no value when set to provider with no value and other values appended"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    					Name:       "simon",
    					UID:        "other-uid",
    				},
    			},
    			shouldReportUnexpectedController: false,
    		},
    		{
    			name: "other pod controller",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       "simon",
    					UID:        "other-uid",
    					Controller: ptr.To(true),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            normaliseLineSeparators(e.cause.message) == """Type-only model reference of type java.lang.Number is ambiguous as multiple model elements are available for this type:
      - other-1 (created by: other-1 creator)
      - other-2 (created by: other-2 creator)"""
        }
    
        def "cannot register already known element"() {
            given:
            registry.register("foo") { it.descriptor("create foo as String").unmanaged("value") }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    }
    
    func (r ReasonStats) Merge(other ReasonStats) {
    	for reason, count := range other {
    		r[reason] += count
    	}
    }
    
    func (r ReasonStats) CopyMerge(other ReasonStats) ReasonStats {
    	if len(r) == 0 {
    		return other
    	}
    	if len(other) == 0 {
    		return r
    	}
    
    	merged := make(ReasonStats, len(r)+len(other))
    	merged.Merge(r)
    	merged.Merge(other)
    
    	return merged
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        `is not allowed to modify labels: foo.node-restriction.kubernetes.io/foo, node-restriction.kubernetes.io/foo, other.k8s.io/foo, other.kubernetes.io/foo`,
    		},
    
    		// Other node object
    		{
    			name:       "forbid create of other node",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
Back to top