Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for get2s (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            then:
            output.count("Creating Transform") == 0
            output.count("Transforming") == 0
            outputContains("files: [jar1.jar.txt, jar2.jar.txt]")
        }
    
        def "user gets a reasonable error message when a transform throws exception and continues with other inputs"() {
            given:
            buildFile << """
                def a = file('a.jar')
                a << '1234'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(get1.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1")
        assertThat(get1.headers["Proxy-Authorization"]).isNull()
        val get2 = server.takeRequest()
        assertThat(get2.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1")
        assertThat(get2.headers["Proxy-Authorization"]).isEqualTo("password")
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (has_is_fallback && !backend_config.getAs<BoolAttr>("is_fallback")) {
          return op.emitOpError()
                 << "is_fallback attribute in backend_config must be of bool type";
        }
    
        auto top_k_attr = backend_config.getAs<IntegerAttr>("top_k");
        auto reduction_dim_attr =
            backend_config.getAs<IntegerAttr>("reduction_dim");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>4.0.0/4.0.99</version>
              <code>
                <![CDATA[
        /**
         * Gets the POM file for the corresponding project (if any).
         *
         * @return The POM file from which this model originated or {@code null} if this model does not belong to a local
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    				processEvent(makeAddEvent(role1v1)),
    				assertState(state{
    					graphNodes:             []*node{makeNode(pod1ns1, withOwners(role1v1beta1)), makeNode(role1v1)},               // parent version/virtual state gets corrected
    					pendingAttemptToDelete: []*node{makeNode(role1v1beta1, virtual), makeNode(pod1ns1, withOwners(role1v1beta1))}, // virtual parent and mismatched child enqueued for delete attempt
    				}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    			destPort: 3001,
    
    			// The traffic gets short-circuited, ignoring externalTrafficPolicy, so
    			// same as "node to NodePort" above.
    			output: "10.180.0.1:80, 10.180.1.1:80",
    			masq:   true,
    		},
    		{
    			name:     "node to LB with eTP:Local",
    			sourceIP: testNodeIP,
    			destIP:   "5.6.7.8",
    			destPort: 80,
    
    			// The traffic gets short-circuited, ignoring externalTrafficPolicy, so
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    		}
    		hostDomain = fmt.Sprintf("%s.%s.svc.%s", pod.Spec.Subdomain, pod.Namespace, clusterDomain)
    	}
    
    	return hostname, hostDomain, nil
    }
    
    // GetPodCgroupParent gets pod cgroup parent from container manager.
    func (kl *Kubelet) GetPodCgroupParent(pod *v1.Pod) string {
    	pcm := kl.containerManager.NewPodContainerManager()
    	_, cgroupParent := pcm.GetPodContainerName(pod)
    	return cgroupParent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    	kubelet.nodeStatusMaxImages = 5 // don't truncate the image list that gets constructed by hand for this test
    	kubelet.kubeClient = nil        // ensure only the heartbeat client is used
    	kubelet.containerManager = &localCM{
    		ContainerManager: cm.NewStubContainerManager(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

        }
    
        // Find the lowest power-of-two segmentCount that exceeds concurrencyLevel, unless
        // maximumSize/Weight is specified in which case ensure that each segment gets at least 10
        // entries. The special casing for size-based eviction is only necessary because that eviction
        // happens per segment instead of globally, so too many segments compared to the maximum size
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      explicit ObjectNames(const SavedObjectGraph& object_graph,
                           absl::Span<std::string> exported_names);
    
      // Gets the names that external users of the SavedModel can use to refer to
      // this node.
      llvm::ArrayRef<llvm::StringRef> GetExportedNames(int node_id) const;
    
      // Gets the name in the module symbol table for this node.
      // This name is only used for internal IR references.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top