Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for Parses (0.41 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains 'Providing metadata for group:projectB:1.1'
            outputDoesNotContain('Providing metadata for group:projectA:1.1')
    
            and: "remote status file parsed only once"
            outputContains 'Parsing status file call count: 1'
            outputDoesNotContain('Parsing status file call count: 2')
    
            when: "resolving the same dependencies"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    	serverConfig.BuildNameToCertificate()
    	// First test that it *does* work when the server's key is ECDSA.
    	testClientHello(t, serverConfig, clientHello)
    
    	// Now test that switching to an RSA key causes the expected error (and
    	// not an internal error about a signing failure).
    	serverConfig.Certificates = testConfig.Certificates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		q, err := ParseQuantity(item.in)
    		if err != nil {
    			t.Errorf("Couldn't parse %v", item.in)
    			continue
    		}
    		if e, a := item.expect, q.String(); e != a {
    			t.Errorf("%#v: expected %v, got %v", item.in, e, a)
    		}
    	}
    	for _, item := range table {
    		q, err := ParseQuantity("-" + item.in)
    		if err != nil {
    			t.Errorf("Couldn't parse %v", item.in)
    			continue
    		}
    		if q.Cmp(Quantity{}) == 0 {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	} else {
    		// The container runtime keeps state on container statuses and
    		// what the container restart count is. When nodes are rebooted
    		// some container runtimes clear their state which causes the
    		// restartCount to be reset to 0. This causes the logfile to
    		// start at 0.log, which either overwrites or appends to the
    		// already existing log.
    		//
    		// We are checking to see if the log directory exists, and find
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // become available after a shared object with a filesystem implementation is
    // loaded, we can only check for availability after all arguments have been
    // parsed.
    //
    // Furthermore, as `INSTANTIATE_TEST_SUITE_P` needs to be at global level and we
    // don't want to have a `std::vector<std::string>` at global level, we use a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        TypeToken<List<String>> b = new TypeToken<List<String>>() {};
        assertEquals(a, b);
      }
    
      public <T> void testVariableTypeTokenNotAllowed() {
        /*
         * We'd use assertThrows here, but that causes no exception to be thrown under Java 8,
         * presumably because the ThrowingRunnable lambda triggers some kind of bug in Java 8's
         * reflection implementation.
         */
        try {
          new TypeToken<T>() {};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	// Tidy, if true, requests that the build list and go.sum file be reduced to
    	// the minimal dependencies needed to reproducibly reload the requested
    	// packages.
    	Tidy bool
    
    	// TidyDiff, if true, causes tidy not to modify go.mod or go.sum but
    	// instead print the necessary changes as a unified diff. It exits
    	// with a non-zero code if the diff is not empty.
    	TidyDiff bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        TypeToken<List<String>> b = new TypeToken<List<String>>() {};
        assertEquals(a, b);
      }
    
      public <T> void testVariableTypeTokenNotAllowed() {
        /*
         * We'd use assertThrows here, but that causes no exception to be thrown under Java 8,
         * presumably because the ThrowingRunnable lambda triggers some kind of bug in Java 8's
         * reflection implementation.
         */
        try {
          new TypeToken<T>() {};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    	// Note: An unmodified AST generated by go/parser will already
    	// contain a backward- or double-quoted path string that does
    	// not contain any invalid characters, and most of the work
    	// here is not needed. However, a modified or generated AST
    	// may possibly contain non-canonical paths. Do the work in
    	// all cases since it's not too hard and not speed-critical.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	triggerRatioDen = 64
    
    	// The minimum trigger constant was chosen empirically: given a sufficiently
    	// fast/scalable allocator with 48 Ps that could drive the trigger ratio
    	// to <0.05, this constant causes applications to retain the same peak
    	// RSS compared to not having this allocator.
    	minTriggerRatioNum = 45 // ~0.7
    
    	// The maximum trigger constant is chosen somewhat arbitrarily, but the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top