Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for VALUE1 (0.08 sec)

  1. guava-tests/test/com/google/common/util/concurrent/ClosingFutureFinishToFutureTest.java

            });
      }
    
      public void testFinishToFuture_preventsFurtherDerivation() {
        ClosingFuture<String> closingFuture = ClosingFuture.from(immediateFuture("value1"));
        FluentFuture<String> unused = closingFuture.finishToFuture();
        assertDerivingThrowsIllegalStateException(closingFuture);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSetTest.groovy

            def visitor = Mock(ResolvedArtifactSet.Visitor)
            def artifactVisitor = Mock(ArtifactVisitor)
            def files = Mock(FileCollectionInternal)
            def attrs1 = attributesFactory.of(Attribute.of('attr', String), 'value1')
            def attrs2 = attributesFactory.of(Attribute.of('attr', String), 'value2')
    
            when:
            set.visit(visitor)
    
            then:
            _ * dep.componentId >> id
            _ * dep.files >> files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    			if sample == nil {
    				// Not a valid sample, exit.
    				return b, locs, nil
    			}
    
    			// Java profiles have data/fields inverted compared to other
    			// profile types.
    			var err error
    			value1, value2, value3 := sample[2], sample[1], sample[3]
    			addrs, err := parseHexAddresses(value3)
    			if err != nil {
    				return nil, nil, fmt.Errorf("malformed sample: %s: %v", line, err)
    			}
    
    			var sloc []*Location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    	<info organisation="myorg"
    	       module="mymodule"
    	       revision="myrev"
    	       status="status"
               branch="branch"
    	       publication="20041101110000"
    	       e:attr1="value1">
    
    		<license name="MyLicense" url="http://www.my.org/mymodule/mylicense.html"/>
    		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
    		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/rule.go

    		return p
    	}
    	return ""
    }
    
    // Tags - a rule can either have tag under <filter></filter> or under
    // <filter><and></and></filter>. This method returns all the tags from the
    // rule in the format tag1=value1&tag2=value2
    func (r Rule) Tags() string {
    	if !r.Filter.Tag.IsEmpty() {
    		return r.Filter.Tag.String()
    	}
    	if len(r.Filter.And.Tags) != 0 {
    		var buf bytes.Buffer
    		for _, t := range r.Filter.And.Tags {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/features/features.go

    		}
    		known = append(known, fmt.Sprintf("%s=true|false (%sdefault=%t)", k, pre, v.Default))
    	}
    	sort.Strings(known)
    	return known
    }
    
    // NewFeatureGate parses a string of the form "key1=value1,key2=value2,..." into a
    // map[string]bool of known keys or returns an error.
    func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) {
    	featureGate := map[string]bool{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. 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)
Back to top