Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for shortly (0.15 sec)

  1. src/net/http/request.go

    	// Deprecated: ErrShortBody is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrShortBody = &ProtocolError{"entity body too short"}
    
    	// Deprecated: ErrMissingContentLength is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/runtime/map.go

    	// "too many" means (approximately) as many overflow buckets as regular buckets.
    	// See incrnoverflow for more details.
    	if B > 15 {
    		B = 15
    	}
    	// The compiler doesn't see here that B < 16; mask B to generate shorter shift code.
    	return noverflow >= uint16(1)<<(B&15)
    }
    
    // growing reports whether h is growing. The growth may be to the same size or bigger.
    func (h *hmap) growing() bool {
    	return h.oldbuckets != nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        when pooled connections are evicted).
    
        If you have a configured ping interval, you should confirm that it is long
        enough for a roundtrip from client to server. If your ping interval is too
        short, slow connections may be misinterpreted as failed connections. A ping
        interval of 30 seconds is reasonable for most use cases.
    
     *  **OkHttp now supports [Conscrypt][conscrypt].** Conscrypt is a Java Security
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      $kubelet_args_str = ${kube_env}['KUBELET_ARGS']
      $kubelet_args = $kubelet_args_str.Split(" ")
      Log-Output "kubelet_args from metadata: ${kubelet_args}"
    
      # To join GCE instances to AD, we need to shorten their names, as NetBIOS name
      # must be <= 15 characters, and GKE generated names are longer than that.
      # To perform the join in an automated way, it's preferable to apply the rename
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      repeated string shortNames = 5;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all')
      repeated string categories = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=atomic
      repeated string shortNames = 5;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all')
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

                   (MOVDstorezero [16] destptr
                           (MOVDstorezero [8] destptr
                                   (MOVDstorezero [0] destptr mem))))
    
    // Handle cases not handled above
    // Lowered Short cases do not generate loops, and as a result don't clobber
    // the address registers or flags.
    (Zero [s] ptr mem) && buildcfg.GOPPC64 <= 8 && s < 64 => (LoweredZeroShort [s] ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    	.site-footer__logo {
    		order: 1;
    		text-align: left;
    	}
    
    	.site-footer__copy {
    		order: 2;
    		text-align: right;
    	}
    }
    
    /* Avoid the footer taking up much of the screen on short displays */
    @media all and (max-height: 56.25rem) {
    	.site-footer__navigation {
    		margin: 1.5rem auto 0 auto;
    		padding-top: 0;
    		padding-bottom: 0;
    	}
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top