Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 202 for shorterOf (1.8 sec)

  1. src/net/http/servemux121.go

    	})
    	if i == n {
    		return append(es, e)
    	}
    	// we now know that i points at where we want to insert
    	es = append(es, muxEntry{}) // try to grow the slice in place, any entry works.
    	copy(es[i+1:], es[i:])      // Move shorter entries down
    	es[i] = e
    	return es
    }
    
    // Formerly ServeMux.HandleFunc.
    func (mux *serveMux121) handleFunc(pattern string, handler func(ResponseWriter, *Request)) {
    	if handler == nil {
    		panic("http: nil handler")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    	"usages":            "allowedUsages specifies a set of usage contexts...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_extended_nonce.go

    }
    
    func (e *extendedNonceGCM) TransformFromStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, bool, error) {
    	if len(data) < infoSizeExtendedNonceGCM {
    		return nil, false, errors.New("the stored data was shorter than the required size")
    	}
    
    	info := data[:infoSizeExtendedNonceGCM]
    
    	transformer, err := e.derivedKeyTransformer(info, dataCtx, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/UniAddress.java

                        dots++;
                        i++;
                    }
                }
            }
    
            return false;
        }
    
        /**
         * Perform DNS SRV lookup on successively shorter suffixes of name
         * and return successful suffix or throw an UnknownHostException.
         * import javax.naming.*;
         * import javax.naming.directory.*;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/csrsigningcontroller.go

    	fs.DurationVar(&o.ClusterSigningDuration.Duration, "cluster-signing-duration", o.ClusterSigningDuration.Duration, "The max length of duration signed certificates will be given.  Individual CSRs may request shorter certs by setting spec.expirationSeconds.")
    }
    
    // ApplyTo fills up CSRSigningController config with options.
    func (o *CSRSigningControllerOptions) ApplyTo(cfg *csrsigningconfig.CSRSigningControllerConfiguration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 06:47:49 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      //
      //   1. Old signer that is unaware of the field (such as the in-tree
      //      implementations prior to v1.22)
      //   2. Signer whose configured maximum is shorter than the requested duration
      //   3. Signer whose configured minimum is longer than the requested duration
      //
      // The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
      //
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/SignedBytes.java

       * compares, using {@link #compare(byte, byte)}), the first pair of values that follow any common
       * prefix, or when one array is a prefix of the other, treats the shorter array as the lesser. For
       * example, {@code [] < [0x01] < [0x01, 0x80] < [0x01, 0x7F] < [0x02]}. Values are treated as
       * signed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/PathUtil.java

     * - If the segments are different with respect to case-insensitive comparison, the result from case-insensitive comparison is used.
     * - If one segment starts with the other segment comparing case-insensitive, then the shorter segment is smaller.
     * - Finally, if both segments are the same ignoring case and have the same length, the case-sensitive comparison is used.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

      }
    
      /**
       * Wrapper for {@link Map#get(Object)} that forces the caller to pass in a key of the same type as
       * the map. Besides being slightly shorter than code that uses {@link #getMap()}, it also ensures
       * that callers don't pass an {@link Entry} by mistake.
       */
      protected V get(K key) {
        return getMap().get(key);
      }
    
      protected final K k0() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      //
      //   1. Old signer that is unaware of the field (such as the in-tree
      //      implementations prior to v1.22)
      //   2. Signer whose configured maximum is shorter than the requested duration
      //   3. Signer whose configured minimum is longer than the requested duration
      //
      // The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
      //
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top