Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for gems (0.29 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. 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)
  3. 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)
  4. 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)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Æthereal Medium in different places, the Light receding always from the denser parts of the Medium? And is not the density thereof greater in free and open Spaces void of Air and other grosser Bodies, than within the Pores of Water, Glass, Crystal, Gems, and other compact Bodies? For when Light passes through Glass or Crystal, and falling very obliquely upon the farther Surface thereof is totally reflected, the total Reflexion ought to proceed rather from the density and vigour of the Medium without...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

        server.enqueue(
          MockResponse(body = "This gets leaked."),
        )
        client =
          clientTestRule.newClientBuilder()
            .connectionPool(ConnectionPool(0, 10, TimeUnit.MILLISECONDS))
            .build()
        val request = Request(server.url("/"))
        client.newCall(request).execute() // Ignore the response so it gets leaked then GC'd.
        awaitGarbageCollection()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K 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