Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 219 for IsSame (0.1 sec)

  1. maven-di/src/main/java/org/apache/maven/di/Key.java

    import org.apache.maven.di.impl.Utils;
    
    /**
     * The key defines an identity of a binding. In any DI, a key is usually a type of the object along
     * with some optional tag to distinguish between bindings which make objects of the same type.
     * <p>
     * In ActiveJ Inject, a key is also a type token - special abstract class that can store type information
     * with the shortest syntax possible in Java.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

    It could potentially be worth running this in parallel mode to demonstrate the difference between
    parallel and configuration cache
    """)
        def "runs tasks in same project in parallel by default"() {
            server.start()
    
            given:
            buildFile << """
                class SlowTask extends DefaultTask {
                    @TaskAction
                    def go() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

            when:
            registry.removeStopEvents(stopEvents)
    
            then:
            registry.stopEvents.empty
        }
    
        def "clear the old entry with same port when storing new daemon info"() {
            given:
            MultiChoiceAddress address1 = new MultiChoiceAddress(UUID.randomUUID(), 54321, [InetAddress.localHost])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/node/v1/generated.proto

      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    			t.Error(err)
    		}
    	}
    
    	// Set up 10 watchers for custom resource.
    	// We can't exercise them in a loop the same way as get requests, as watchcache
    	// can reject them with 429 and Retry-After: 1 if it is uninitialized and even
    	// though 429 is automatically retried, with frequent watchcache terminations and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

    """
    
            then:
            succeeds()
    
            and:
            wasNotForked()
        }
    
        def "does not fork build when immutable system property is set on command line with same value as current JVM"() {
            def encoding = Charset.defaultCharset().name()
    
            given:
            buildScript """
                task encoding {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/values.yaml

        # change cni scope level to control logging out of istio-cni-node DaemonSet
        logging:
          level: info
    
        logAsJson: false
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tests/fuzz/config_validation_fuzzer.go

    	}
    
    	iobj := crdclient.TranslateObject(object, gvk, "cluster.local")
    	_, _ = r.ValidateConfig(iobj)
    	return 1
    }
    
    // FuzzConfigValidation2 implements a second fuzzer for config validation.
    // The fuzzer targets the same API as FuzzConfigValidation above,
    // but its approach to creating a fuzzed config is a bit different
    // in that it utilizes Istio APIs to generate a Spec from json.
    // We currently run both continuously to compare their performance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/strconv/makeisprint.go

    )
    
    var filename = flag.String("output", "isprint.go", "output file name")
    
    var (
    	range16  []uint16
    	except16 []uint16
    	range32  []uint32
    	except32 []uint32
    )
    
    func isPrint(r rune) bool {
    	// Same algorithm, either on uint16 or uint32 value.
    	// First, find first i such that rang[i] >= x.
    	// This is the index of either the start or end of a pair that might span x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

            if (!details.shouldPublish()) {
                return;
            }
    
            if (!seen.add(name)) {
                throw new InvalidUserDataException("Cannot add feature variant '" + name + "' as a variant with the same name is already registered");
            }
    
            collector.accept(new FeatureConfigurationVariant(
                name,
                outgoingConfiguration,
                subvariant,
                details.getMavenScope(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top