Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 299 for OTHER (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        # done in MLIR level.
        # Tests that the quantized graph outputs similar values. The rtol and atol
        # values are arbitrary.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.3, atol=0.2)
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
                self._output_saved_model_path, self._input_saved_model_path
            ),
            0.65,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/modget/get.go

    				// either of those conditions holds, *and* no other query changes the
    				// selected version of curM, then we will fail in checkWildcardVersions.
    				// (This could be an error, but it's too soon to tell.)
    				//
    				// However, even then the transitive requirements of some other query
    				// may downgrade this module out of the build list entirely, in which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    }
                }
                include 'other'
            """
            def lib = mavenHttpRepo.module("org.gradle.test", "lib", "1.0").publish()
            buildFile << """
                apply plugin: 'java-library'
    
                dependencies {
                    implementation project(":other")
                }
            """
    
            file("other/build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top