Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Applies (0.15 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * @param <U> the type of the result of the function
       */
      public interface ClosingFunction<T extends @Nullable Object, U extends @Nullable Object> {
    
        /**
         * Applies this function to an input, or throws an exception if unable to do so.
         *
         * <p>Any objects that are passed to {@link DeferredCloser#eventuallyClose(Object, Executor)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		not contain spaces. Flags listed on the command line
    //		are applied after this list and therefore override it.
    //	GOINSECURE
    //		Comma-separated list of glob patterns (in the syntax of Go's path.Match)
    //		of module path prefixes that should always be fetched in an insecure
    //		manner. Only applies to dependencies that are being fetched directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            this.decorate = decorate;
            this.suffix = suffix;
            this.factoryId = factoryId;
        }
    
        /**
         * Returns a generator that applies DSL mix-in, extensibility and service injection for generated classes.
         */
        static ClassGenerator decorateAndInject(
            Collection<? extends InjectAnnotationHandler> allKnownAnnotations,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier_test.go

    			destPort: 3002,
    
    			// externalTrafficPolicy applies; only the local endpoint is
    			// selected, and we don't masquerade.
    			output: "10.180.0.2:80",
    			masq:   false,
    		},
    		{
    			name:     "external to LB with eTP:Local",
    			sourceIP: testExternalClient,
    			destIP:   "5.6.7.8",
    			destPort: 80,
    
    			// externalTrafficPolicy applies; only the local endpoint is
    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. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "operate on resources that live on composite devices.">
      ];
    }
    
    def ExecutorUpdateControlDependenciesPass : Pass<"tf-executor-update-control-dependencies", "ModuleOp"> {
      let summary = "Computes and applies all necessary control dependencies based on side effect analysis.";
      let description = [{
        This pass is intended to run after the split_into_island_per_op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	w.WriteHeader(code)
    	fmt.Fprintln(w, error)
    }
    
    // NotFound replies to the request with an HTTP 404 not found error.
    func NotFound(w ResponseWriter, r *Request) { Error(w, "404 page not found", StatusNotFound) }
    
    // NotFoundHandler returns a simple request handler
    // that replies to each request with a “404 page not found” reply.
    func NotFoundHandler() Handler { return HandlerFunc(NotFound) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	// relocations. On GNU systems, we can arrange for the dynamic linker to
    	// mprotect sections after relocations are applied by giving them write
    	// permissions in the object file and calling them ".data.rel.ro.FOO". We
    	// divide the .rodata section between actual .rodata and .data.rel.ro.rodata,
    	// but for the other sections that this applies to, we just write a read-only
    	// .FOO section or a read-write .data.rel.ro.FOO section depending on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
    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. src/net/http/serve_test.go

    	{"GET", "google.com", "/dir/..", 301, ""},
    	{"GET", "google.com", "/dir/..", 301, ""},
    	{"GET", "google.com", "/dir/./file", 301, "/dir/"},
    
    	// The /foo -> /foo/ redirect applies to CONNECT requests
    	// but the path canonicalization does not.
    	{"CONNECT", "google.com", "/dir", 301, "/dir/"},
    	{"CONNECT", "google.com", "/../search", 404, ""},
    	{"CONNECT", "google.com", "/dir/..", 200, "/dir/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top