Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 158 for VALUE1 (0.2 sec)

  1. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

                    + "                                <property>\n"
                    + "                                    <name>prop1</name>\n"
                    + "                                    <value>value1</value>\n"
                    + "                                </property>\n"
                    + "                            </properties>\n"
                    + "                        </foo>\n"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            return property()
        }
    
        @Override
        Class<String> type() {
            return String
        }
    
        @Override
        String someValue() {
            return "value1"
        }
    
        @Override
        String someOtherValue() {
            return "other1"
        }
    
        @Override
        String someOtherValue2() {
            return "other2"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		{"key in ( value )", []Token{IdentifierToken, InToken, OpenParToken, IdentifierToken, ClosedParToken}},
    		{"key notin ( value )", []Token{IdentifierToken, NotInToken, OpenParToken, IdentifierToken, ClosedParToken}},
    		{"key in ( value1, value2 )", []Token{IdentifierToken, InToken, OpenParToken, IdentifierToken, CommaToken, IdentifierToken, ClosedParToken}},
    		{"key", []Token{IdentifierToken}},
    		{"!key", []Token{DoesNotExistToken, IdentifierToken}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu.go

    	Enable    bool // whether feature should be enabled
    }
    
    // processOptions enables or disables CPU feature values based on the parsed env string.
    // The env string is expected to be of the form cpu.feature1=value1,cpu.feature2=value2...
    // where feature names is one of the architecture specific list stored in the
    // cpu packages options variable and values are either 'on' or 'off'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ClosingFuture.java

           * (but not before this method completes), even if this method throws or the pipeline is
           * cancelled.
           */
          @ParametricNullness
          U apply(DeferredCloser closer, @ParametricNullness V1 value1, @ParametricNullness V2 value2)
              throws Exception;
        }
    
        /**
         * A function that returns a {@link ClosingFuture} when applied to the values of the two futures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    			requestPath:  "/some/path",
    			expectedPath: "/some/path",
    			responseHeader: map[string]string{
    				"Header1":                      "value1",
    				"Access-Control-Allow-Origin":  "some.server",
    				"Access-Control-Allow-Methods": "GET"},
    			expectedRespHeader: map[string]string{
    				"Header1": "value1",
    			},
    			notExpectedRespHeader: []string{
    				"Access-Control-Allow-Origin",
    				"Access-Control-Allow-Methods",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  7. android/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
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/index_test.go

    				},
    				AccessModes: []v1.PersistentVolumeAccessMode{
    					v1.ReadWriteOnce,
    					v1.ReadOnlyMany,
    				},
    				StorageClassName: classWait,
    				NodeAffinity:     createNodeAffinity("key1", "value1"),
    				VolumeMode:       &fs,
    			},
    			Status: v1.PersistentVolumeStatus{
    				Phase: v1.VolumeAvailable,
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:  "affinity-pv2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    		},
    	})
    	defer store.Stop()
    	// In background, update the store.
    	go func() {
    		store.Add(makeTestPodDetails("pod1", 2, "node1", map[string]string{"label": "value1"}))
    		store.Add(makeTestPodDetails("pod2", 3, "node1", map[string]string{"label": "value1"}))
    		store.Add(makeTestPodDetails("pod3", 5, "node2", map[string]string{"label": "value2"}))
    	}()
    
    	// list by empty MatchValues.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

           * (but not before this method completes), even if this method throws or the pipeline is
           * cancelled.
           */
          @ParametricNullness
          U apply(DeferredCloser closer, @ParametricNullness V1 value1, @ParametricNullness V2 value2)
              throws Exception;
        }
    
        /**
         * A function that returns a {@link ClosingFuture} when applied to the values of the two futures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top