Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for value_ (0.11 sec)

  1. guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testNewIdentityHashSet() {
        Set<Integer> set = Sets.newIdentityHashSet();
        Integer value1 = new Integer(12357);
        Integer value2 = new Integer(12357);
        assertTrue(set.add(value1));
        assertFalse(set.contains(value2));
        assertTrue(set.contains(value1));
        assertTrue(set.add(value2));
        assertEquals(2, set.size());
      }
    
      @J2ktIncompatible
      @GwtIncompatible // CopyOnWriteArraySet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        assertThat(filesystem.exists(cacheDir / "dir1")).isFalse()
      }
    
      private operator fun set(
        key: String,
        value0: String,
        value1: String,
      ) {
        val editor = cache.edit(key)!!
        editor.setString(0, value0)
        editor.setString(1, value1)
        editor.commit()
      }
    
      private fun assertAbsent(key: String) {
        val snapshot = cache[key]
        if (snapshot != null) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            }
    
            public void setValue(Object value) {
                this.value = value;
            }
    
            public Object getValue2() {
                return value2;
            }
    
            public ParentBean setValue2(Object value2) {
                this.value2 = value2;
                return this;
            }
        }
    
        public static class CovariantPropertyTypes extends ParentBean {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/policy_applier_test.go

    								JwksUri:              jwksURI,
    								ForwardOriginalToken: true,
    								OutputClaimToHeaders: []*v1beta1.ClaimToHeader{
    									{Header: "x-jwt-key1", Claim: "value1"},
    									{Header: "x-jwt-key2", Claim: "value2"},
    								},
    							},
    						},
    					},
    				},
    			},
    			expected: &hcm.HttpFilter{
    				Name: "envoy.filters.http.jwt_authn",
    				ConfigType: &hcm.HttpFilter_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == TextUtil.toPlatformLineSeparators("""Cannot query the value of ${displayName} because it has no value available.
    The value of this property is derived from: <source>""")
        }
    
        def "can replace convention value before value has been set"() {
            def provider = supplierWithValues(someOtherValue())
            def property = propertyWithNoValue()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "requiredValue set when expression is set",
    			in: []api.ClaimValidationRule{
    				{Expression: "claims.foo == 'bar'", RequiredValue: "value"},
    			},
    			structuredAuthnFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Struct podLabels = 36;
    
      // Configuration settings passed to Pilot as a ConfigMap.
      //
      // This controls whether the mesh config map, generated from values.yaml is generated.
      // If false, pilot wil use default values or user-supplied values, in that order of preference.
      google.protobuf.BoolValue configMap = 18;
    
      // Controls whether Pilot is configured through the Mesh Control Protocol (MCP).
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    // | 95             | true/false          | nil/true/false         |
    // +-----------------+---------------------+-----------------------+
    // where:
    // - false indicates the value of the param was set to "false" by a test case
    // - true  indicates the value of the param was set to "true" by a test case
    func TestGetWatchCacheResourceVersion(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.visible = false
            configuration.transitive = false
            configuration.description = "descript"
            configuration.exclude([group: "value"])
            configuration.exclude([group: "value2"])
            configuration.artifacts.add(artifact("name1", "ext1", "type1", "classifier1"))
            configuration.artifacts.add(artifact("name2", "ext2", "type2", "classifier2"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    {\"rule\": \"self.components['Widget'].priority \u003c 10\"} - Rule scoped to a list of integers: {\"rule\": \"self.values.all(value, value \u003e= 0 \u0026\u0026 value \u003c 100)\"} - Rule scoped to a string value: {\"rule\": \"self.startsWith('kube')\"}\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.\n\nUnknown data preserved...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top