Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for VALUE1 (0.24 sec)

  1. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    	// encoded differently) and then every varint is a single byte long.
    	components := make([]int, len(bytes)+1)
    
    	// The first varint is 40*value1 + value2:
    	// According to this packing, value1 can take the values 0, 1 and 2 only.
    	// When value1 = 0 or value1 = 1, then value2 is <= 39. When value1 = 2,
    	// then there are no restrictions on value2.
    	var v int
    	if !bytes.readBase128Int(&v) {
    		return false
    	}
    	if v < 80 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            def candidate2 = attributes(usage: 'java-runtime-extra', status: 'integration')
            def candidate3 = attributes(usage: 'java-api-extra', status: 'integration', bundling: value1)
            def candidate4 = attributes(usage: 'java-runtime-extra', status: 'integration', bundling: value2)
            def requested = attributes(usage: 'java-api')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle-handlers_test.go

    			accessKey:          creds.AccessKey,
    			secretKey:          creds.SecretKey,
    			body:               []byte(`<LifecycleConfiguration><Rule><ID>id</ID><Filter><Prefix>logs/</Prefix><Tag><Key>Key1</Key><Value>Value1</Value></Tag></Filter><Status>Enabled</Status><Expiration><Days>365</Days></Expiration></Rule></LifecycleConfiguration>`),
    			expectedRespStatus: http.StatusBadRequest,
    			lifecycleResponse:  []byte(``),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pkg/volume/projected/projected_test.go

    					Name:      testPodName,
    					Namespace: testNamespace,
    					Annotations: map[string]string{
    						"a1": "value1",
    						"a2": "value2",
    					},
    					UID: testPodUID},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"annotation": {Data: []byte("value1"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "annotation-error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

            }
    
            then:
            0 * listener.onChange(_, _)
        }
    
        def "replaceAll() uses reference equality for non-primitives"() {
            def value1 = [1]
            def value2 = [1]
    
            def map = getMapUnderTestToWrite(value: value1)
            when:
            map.replaceAll { k, v ->
                return value2
            }
    
            then:
            1 * listener.onChange("value", value2)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

        def "duplicate names in nested iterable are allowed"() {
            buildFile << taskWithNestedInput()
            buildFile << namedBeanClass()
            buildFile << """
                myTask.nested = [new NamedBean('name', 'value1'), new NamedBean('name', 'value2')]
            """
    
            expect:
            succeeds "myTask"
        }
    
        def "nested Provider is unpacked"() {
            buildFile << taskWithNestedInput()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

      @CanIgnoreReturnValue
      public <T> ClassSanityTester setDistinctValues(Class<T> type, T value1, T value2) {
        checkNotNull(type);
        checkNotNull(value1);
        checkNotNull(value2);
        checkArgument(!Objects.equal(value1, value2), "Duplicate value provided.");
        distinctValues.replaceValues(type, ImmutableList.of(value1, value2));
        setDefault(type, value1);
        return this;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

        }
    
        public static class TaskWithSingleParamAction extends DefaultTask {
            @TaskAction
            public void doStuff(int value1) {
            }
        }
    
        public static class TaskWithMultiParamAction extends DefaultTask {
            @TaskAction
            public void doStuff(int value1, int value2) {
            }
        }
    
        public static class TaskWithInputFile extends TaskWithAction {
            File inputFile;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    	userInfo := &user.DefaultInfo{
    		Name:   "myuser",
    		Groups: []string{"mygroup"},
    		UID:    "myuid",
    		Extra:  map[string][]string{"extrakey": {"value1", "value2"}},
    	}
    	attrs := admission.NewAttributesRecord(
    		internalObj.DeepCopyObject(),
    		internalObjOld.DeepCopyObject(),
    		schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"},
    		"myns",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

        }
    
        def "equals should return false for 2 containers with different provider instances that return different values"() {
            Property<String> testProperty1 = new DefaultProperty<>(Mock(PropertyHost), String).convention("value1")
            Property<String> testProperty2 = new DefaultProperty<>(Mock(PropertyHost), String).convention("value2")
            def testAttribute = Attribute.of("test", String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top