Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,252 for whereIs (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            if (matches.size() > 1) {
                // there's an ambiguity, but we may have several variants matching the requested capabilities.
                // Here we're going to check if in the candidates, there's a single one _strictly_ matching the requested capabilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    This example reflects how every Groovy build script is backed by an implicit instance of `Project`. If you see an unqualified element and you don't know where it's defined, always check the `Project` API documentation to see if that's where it's coming from.
    
    [CAUTION]
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                Calico-controlled \tendpoints that do have the label “my_label”.
                                \n The effect is that the latter will accept packets from
                                non-Calico sources whereas the former is limited to packets
                                from Calico-controlled endpoints."
                              type: string
                            serviceAccounts:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

            manifest.contains('bake: moji€')
        }
    
        @Issue('GRADLE-3374')
        def "can merge manifests containing split multi-byte chars using #taskType task"() {
            // Note that there's no need to cover this case with merge read charsets
            // other than UTF-8 because it's not supported by the JVM.
            given:
            def attributeNameMerged = 'Looong-Name-Of-Manifest-Entry'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

        public static final String TRANSFORM_EXECUTED = 'Transform producer.zip (project :producer) with AugmentTransform'
        public static final String TEXT_WITH_LINE_ENDINGS = "\nhere's a line\nhere's another line\n\n"
    
        abstract String getStatusForReusedOutput()
    
        abstract void execute(String... tasks)
    
        abstract void cleanWorkspace()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

          factory.newConnectionPool(
            maxIdleConnections = 2,
          )
        val c1 = factory.newConnection(pool, routeA1, 50L)
        val c2 = factory.newConnection(pool, routeB1, 75L)
    
        // With 2 connections, there's no need to evict until the connections time out.
        assertThat(pool.closeConnections(100L)).isEqualTo(50L)
        assertThat(pool.connectionCount()).isEqualTo(2)
        assertThat(c1.socket().isClosed).isFalse()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/proxy/endpointslicecache.go

    		pendingData, pendingOk := cache.trackerByServiceMap[serviceKey].pending[sliceKey]
    
    		// If there's already a pending value, return whether or not this would
    		// change that.
    		if pendingOk {
    			return !reflect.DeepEqual(esData, pendingData)
    		}
    
    		// If there's already an applied value, return whether or not this would
    		// change that.
    		if appliedOk {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/base/Throwables.java

       */
      public static Throwable getRootCause(Throwable throwable) {
        // Keep a second pointer that slowly walks the causal chain. If the fast pointer ever catches
        // the slower pointer, then there's a loop.
        Throwable slowPointer = throwable;
        boolean advanceSlowPointer = false;
    
        Throwable cause;
        while ((cause = throwable.getCause()) != null) {
          throwable = cause;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/unfreeze_constants.mlir

    // CHECK-DAG: %[[READ_VAR_0:.*]] = "tf.ReadVariableOp"(%[[VAR_HANDLE_2]]) : (tensor<!tf_type.resource<tensor<8xf32>>>) -> tensor<8xf32>
    // CHECK: return %[[READ_VAR_0]] : tensor<8xf32>
    }
    
    // -----
    
    // Tests the case when there's no tf_saved_model.session_initializer.
    module attributes {tf_saved_model.semantics} {
    
    // Check that a new tf_saved_model.session_initializer is created, along with an initialier function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    		fallthrough
    	case len(requestInfo.Parts) >= 2:
    		requestInfo.Name = requestInfo.Parts[1]
    		fallthrough
    	case len(requestInfo.Parts) >= 1:
    		requestInfo.Resource = requestInfo.Parts[0]
    	}
    
    	// if there's no name on the request and we thought it was a get before, then the actual verb is a list or a watch
    	if len(requestInfo.Name) == 0 && requestInfo.Verb == "get" {
    		opts := metainternalversion.ListOptions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top