Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 188 for valid (0.08 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    // because:
                    // 1. the `failed` method will have been called with the user facing error
                    // 2. such an error may still lead to a valid dependency graph
                    MinimalResolutionResult resolutionResult = results.getVisitedGraph().getResolutionResult();
                    context.setResult(new ResolveConfigurationResolutionBuildOperationResult(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	srcChain  string
    	extraArgs string
    }
    
    var nftablesJumpChains = []nftablesJumpChain{
    	// We can't jump to endpointsCheckChain from filter-prerouting like
    	// firewallCheckChain because reject action is only valid in chains using the
    	// input, forward or output hooks with kernels before 5.9.
    	{nodePortEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterInputChain, "ct state new"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    			t.Errorf("Implements(%s, %s) = %t, want %t", test.V, test.T, got, test.want)
    		}
    
    		// The type assertion x.(T) is valid if T is an interface or if T implements the type of x.
    		// The assertion is never valid if T is a bad type.
    		V := test.T
    		T := test.V
    		want := false
    		if _, ok := T.Underlying().(*Interface); (ok || Implements(T, V)) && T != Bad {
    			want = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       * [host] is an IP address or is considered a public suffix by the public suffix list.
       *
       * In general this method **should not** be used to test whether a domain is valid or routable.
       * Instead, DNS is the recommended source for that information.
       *
       * | URL                           | `topPrivateDomain()` |
       * | :---------------------------- | :------------------- |
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    func (l *Loader) resolve(r *oReader, s goobj.SymRef) Sym {
    	var rr *oReader
    	switch p := s.PkgIdx; p {
    	case goobj.PkgIdxInvalid:
    		// {0, X} with non-zero X is never a valid sym reference from a Go object.
    		// We steal this space for symbol references from external objects.
    		// In this case, X is just the global index.
    		if l.isExtReader(r) {
    			return Sym(s.SymIdx)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        Value logits = op.getLogits();
        auto loc = op.getLoc();
    
        // Note that the TensorFlow Softmax op verifies that the input rank is
        // greater than or equal to one so the following sequence is valid.
        auto reduce_dim =
            rewriter.create<TF::ConstOp>(loc, GetI64ElementsAttr({-1}, &rewriter));
    
        // Exponential of input values and then their sum can be very large here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/tables9.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *caseTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return caseValues[c0]
    	}
    	i := caseIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 92.4K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    		}, ""},
    		{rsaCert, &ClientHelloInfo{
    			ServerName:        "example.com",
    			SignatureSchemes:  []SignatureScheme{PSSWithSHA256},
    			SupportedVersions: []uint16{VersionTLS13},
    		}, "not valid for requested server name"},
    		{ecdsaCert, &ClientHelloInfo{
    			SignatureSchemes:  []SignatureScheme{ECDSAWithP384AndSHA384},
    			SupportedVersions: []uint16{VersionTLS13},
    		}, "signature algorithms"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    			t.Errorf("Implements(%s, %s) = %t, want %t", test.V, test.T, got, test.want)
    		}
    
    		// The type assertion x.(T) is valid if T is an interface or if T implements the type of x.
    		// The assertion is never valid if T is a bad type.
    		V := test.T
    		T := test.V
    		want := false
    		if _, ok := T.Underlying().(*Interface); (ok || Implements(T, V)) && T != Bad {
    			want = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          "Invalid URL host: \"[::0000:0000:0000:0000::0001]\"",
        )
      }
    
      @Test
      fun hostIpv6ScopedAddress() {
        // java.net.InetAddress parses scoped addresses. These aren't valid in URLs.
        assertInvalid("http://[::1%2544]", "Invalid URL host: \"[::1%2544]\"")
      }
    
      @Test
      fun hostIpv6AddressTooManyLeadingZeros() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top