Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for declareNS (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                /*
                 *  GROOVY-4009: when a normal variable is simply being used, there is no need to try to
                 *  resolve its type. Variable type resolve should proceed only if the variable is being declared.
                 */
                return ve;
            }
            if (v instanceof DynamicVariable) {
                String name = ve.getName();
                ClassNode t = ClassHelper.make(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. .bazelrc

    # END TF CACHE HELPER OPTIONS
    # BEGIN TF TEST SUITE OPTIONS
    # These are convenience config options that effectively declare TF's CI test suites. Look
    # at the scripts of ci/official/ to see how TF's CI uses them.
    
    # LIBTENSORFLOW TESTS are for building Libtensorflow archives. These are CUDA/CPU-agnostic.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    	if cur, exists := listenerMap[listenerMapKey]; exists {
    		currentListenerEntry = cur
    		// NOTE: This is not a conflict. This is simply filtering the
    		// services for a given listener explicitly.
    		// When the user declares their own ports in Sidecar.egress
    		// with some specific services on those ports, we should not
    		// generate any more listeners on that port as the user does
    		// not want those listeners. Protocol sniffing is not needed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            maybeWarnOnChangingUsage("setCanBeDeclared", canBeDeclaredAgainst, allowed);
            setCanBeDeclaredInternal(allowed);
        }
    
        /**
         * Configures if a configuration can have dependencies declared against it, without emitting any warnings.
         */
        private void setCanBeDeclaredInternal(boolean allowed) {
            if (canBeDeclaredAgainst != allowed) {
                validateMutation(MutationType.USAGE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    xVLHwDXh/6NJAiEAl2oHGGLz64BuAfjKrqwz7qMYr9HCLIe/YsoWq/olzScCIQDi
    D2lWusoe2/nEqfDVVWGWlyJ7yOmqaVm/iNUN9B2N2g==
    -----END RSA TESTING KEY-----
    `)
    
    // keyPEM is the same as rsaKeyPEM, but declares itself as just
    // "PRIVATE KEY", not "RSA PRIVATE KEY".  https://golang.org/issue/4477
    var keyPEM = testingKey(`-----BEGIN TESTING KEY-----
    MIIBOwIBAAJBANLJhPHhITqQbPklG3ibCVxwGMRfp/v4XqhfdQHdcVfHap6NQ5Wo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
      }
    
      /** Unblocks all threads and runs all listeners. */
      private static void complete(AbstractFuture<?> param, boolean callInterruptTask) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
        AbstractFuture<?> future = param;
    
        Listener next = null;
        outer:
        while (true) {
          future.releaseWaiters();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
      }
    
      /** Unblocks all threads and runs all listeners. */
      private static void complete(AbstractFuture<?> param, boolean callInterruptTask) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
        AbstractFuture<?> future = param;
    
        Listener next = null;
        outer:
        while (true) {
          future.releaseWaiters();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. src/cmd/compile/internal/types/type.go

    	t.underlying = underlying.underlying
    
    	if underlying.NotInHeap() {
    		t.SetNotInHeap(true)
    	}
    	if underlying.HasShape() {
    		t.SetHasShape(true)
    	}
    
    	// spec: "The declared type does not inherit any methods bound
    	// to the existing type, but the method set of an interface
    	// type [...] remains unchanged."
    	if t.IsInterface() {
    		t.methods = underlying.methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    // tlsunsafeekm=1.
    func (cs *ConnectionState) ExportKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
    	return cs.ekm(label, context, length)
    }
    
    // ClientAuthType declares the policy the server will follow for
    // TLS Client Authentication.
    type ClientAuthType int
    
    const (
    	// NoClientCert indicates that no client certificate should be requested
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    	case dns.ErrInvalidBucketName:
    		apiErr = ErrInvalidBucketName
    	case dns.ErrBucketConflict:
    		apiErr = ErrBucketAlreadyExists
    	default:
    		if strings.Contains(err.Error(), "request declared a Content-Length") {
    			apiErr = ErrIncompleteBody
    		} else {
    			apiErr = ErrInternalError
    		}
    	}
    
    	return apiErr
    }
    
    var noError = APIError{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top