Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for halted (0.14 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation.
    	// Allowed values are "Never" and "IfNeeded".
    	//
    	// Never: the webhook will not be called more than once in a single admission evaluation.
    	//
    	// IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	if err := c.conn.Close(); err != nil {
    		return err
    	}
    	return alertErr
    }
    
    var errEarlyCloseWrite = errors.New("tls: CloseWrite called before handshake complete")
    
    // CloseWrite shuts down the writing side of the connection. It should only be
    // called once the handshake has completed and does not call CloseWrite on the
    // underlying connection. Most callers should just use [Conn.Close].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation.
      // Allowed values are "Never" and "IfNeeded".
      //
      // Never: the webhook will not be called more than once in a single admission evaluation.
      //
      // IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	})
    	defer func() {
    		if successfulList {
    			c.ready.set(false)
    		}
    	}()
    
    	c.terminateAllWatchers()
    	// Note that since onReplace may be not called due to errors, we explicitly
    	// need to retry it on errors under lock.
    	// Also note that startCaching is called in a loop, so there's no need
    	// to have another loop here.
    	if err := c.reflector.ListAndWatch(stopChannel); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    	// SvcUpdate is called when a service definition is updated/deleted.
    	SvcUpdate(shard ShardKey, hostname string, namespace string, event Event)
    
    	// ConfigUpdate is called to notify the XDS server of config updates and request a push.
    	// The requests may be collapsed and throttled.
    	ConfigUpdate(req *PushRequest)
    
    	// ProxyUpdate is called to notify the XDS server to send a push to the specified proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public Set<K> elementSet() {
          return multimap.keySet();
        }
    
        @Override
        Iterator<K> elementIterator() {
          throw new AssertionError("should never be called");
        }
      }
    
      /** A skeleton implementation of {@link Multimap#entries()}. */
      abstract static class Entries<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  7. src/net/http/request.go

    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores Form and uses Body instead.
    	Form url.Values
    
    	// PostForm contains the parsed form data from PATCH, POST
    	// or PUT body parameters.
    	//
    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores PostForm and uses Body instead.
    	PostForm url.Values
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    // followed by sep, and closed by close (or EOF). sep must be one of _Comma
    // or _Semi, and close must be one of _Rparen, _Rbrace, or _Rbrack.
    //
    // For each list element, f is called. Specifically, unless we're at close
    // (or EOF), f is called at least once. After f returns true, no more list
    // elements are accepted. list returns the position of the closing token.
    //
    // list = [ f { sep f } [sep] ] close .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. fastapi/param_functions.py

                directly.
                """
            ),
        ] = None,
        *,
        use_cache: Annotated[
            bool,
            Doc(
                """
                By default, after a dependency is called the first time in a request, if
                the dependency is declared again for the rest of the request (for example
                if the dependency is needed by several dependencies), the value will be
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

        /**
         * Returns the current value being referenced, or {@code null} if there is none (e.g. because
         * either it got collected, or {@link #clear} was called, or it wasn't set in the first place).
         */
        @CheckForNull
        V get();
    
        /** Returns the entry which contains this {@link WeakValueReference}. */
        E getEntry();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top