Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for Avery (0.05 sec)

  1. pkg/proxy/nftables/proxier_test.go

    					Namespace: "very-long-namespace-name-abcdefghijklmnopqrstuvwxyz0123456789xx",
    					Name:      "very-long-service-name-why-would-you-even-do-this-i-mean-really",
    				},
    				Port: "port-443-providing-the-hypertext-transmission-protocol-with-tls",
    			},
    			protocol: "sctp",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       * map.
       *
       * <p>The returned map isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered map's methods, such as {@code size()}, iterate across every key/value
       * mapping in the underlying map and determine which satisfy the filter. When a live view is
       * <i>not</i> needed, it may be faster to copy the filtered map and use the copy.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

       * map.
       *
       * <p>The returned map isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered map's methods, such as {@code size()}, iterate across every key/value
       * mapping in the underlying map and determine which satisfy the filter. When a live view is
       * <i>not</i> needed, it may be faster to copy the filtered map and use the copy.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *       Executor)} instead, with a function that returns the next value directly.
       *   <li>Call {@link DeferredCloser#eventuallyClose(Object, Executor) closer.eventuallyClose()}
       *       for every closeable object this step creates in order to capture it for later closing.
       *   <li>Return a {@code ClosingFuture}. To turn a {@link ListenableFuture} into a {@code
       *       ClosingFuture} call {@link #from(ListenableFuture)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	return *(**g)(add(unsafe.Pointer(ptr), i*goarch.PtrSize))
    }
    
    // forEachG calls fn on every G from allgs.
    //
    // forEachG takes a lock to exclude concurrent addition of new Gs.
    func forEachG(fn func(gp *g)) {
    	lock(&allglock)
    	for _, gp := range allgs {
    		fn(gp)
    	}
    	unlock(&allglock)
    }
    
    // forEachGRace calls fn on every G from allgs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/net/http/server.go

    // the corresponding parts of a request case-sensitively.
    //
    // A pattern with no method matches every method. A pattern
    // with the method GET matches both GET and HEAD requests.
    // Otherwise, the method must match exactly.
    //
    // A pattern with no host matches every host.
    // A pattern with a host matches URLs on that host only.
    //
    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. pkg/controller/daemon/daemon_controller_test.go

    	}
    	if len(manager.fakeRecorder.Events) != expectedEvents {
    		return fmt.Errorf("Unexpected number of events.  Expected %d, saw %d\n", expectedEvents, len(manager.fakeRecorder.Events))
    	}
    	// Every Pod created should have a ControllerRef.
    	if got, want := len(fakePodControl.ControllerRefs), expectedCreates; got != want {
    		return fmt.Errorf("len(ControllerRefs) = %v, want %v", got, want)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    			return false
    		}
    
    		for k, cert := range chain {
    			if !strings.Contains(nameToKey(&cert.Subject), expectedChain[k]) {
    				return false
    			}
    		}
    		return true
    	}
    
    	// Every expected chain should match one (or more) returned chain. We tolerate multiple
    	// matches, as due to root store semantics it is plausible that (at least on the system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	// That is, ResolveImport means that the import path came from
    	// a source file and has not been expanded yet to account for
    	// vendoring or possible module adjustment.
    	// Every import path should be loaded initially with ResolveImport,
    	// and then the expanded version (for example with the /vendor/ in it)
    	// gets recorded as the canonical import path. At that point, future loads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    			if in.Rules == nil {
    				errs = appendErrors(errs, fmt.Errorf("CUSTOM action without `rules` is meaningless as it will never be triggered, "+
    					"add an empty rule `{}` if you want it be triggered for every request"))
    			} else {
    				if in.GetProvider() == nil || in.GetProvider().GetName() == "" {
    					errs = appendErrors(errs, fmt.Errorf("`provider.name` must not be empty"))
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top