Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for ensure (0.43 sec)

  1. cluster/gce/gci/configure-helper.sh

        echo "Disk format must be either fs or block, got ${format}"
      fi
    }
    
    # Local ssds, if present, are mounted or symlinked to their appropriate
    # locations
    function ensure-local-ssds() {
      if [ "${NODE_LOCAL_SSDS_EPHEMERAL:-false}" == "true" ]; then
        ensure-local-ssds-ephemeral-storage
        return
      fi
      get-local-disk-num "scsi" "block"
      local scsiblocknum="${localdisknum}"
      local i=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two {@code <= 1<<30} to ensure that entries are
       * indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two {@code <= 1<<30} to ensure that entries are
       * indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

    - If upgrading Cluster Federation components from 1.3.x, please ensure your cluster name is a valid DNS label (#30956, @nikhiljindal)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    			}
    			// Setup tests for various forms of the API
    			// TODO: it may be necessary to vary the inputs of the hash and ensure we get a different backend
    			// But its pretty hard to test that, so for now just ensure we hit the same one.
    			t.RunTraffic(TrafficTestCase{
    				name:   "source ip " + c.Config().Service,
    				config: svc + tmpl.MustEvaluate(destRule, "useSourceIp: true"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

              "in":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

              ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              "in":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

              "in":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    		req, err := ReadRequest(bufio.NewReader(pr))
    		if err == nil {
    			// Ensure all the body is read; otherwise
    			// we'll get a partial dump.
    			io.Copy(io.Discard, req.Body)
    			req.Body.Close()
    		}
    		select {
    		case dr.c <- strings.NewReader("HTTP/1.1 204 No Content\r\nConnection: close\r\n\r\n"):
    		case quitReadCh <- struct{}{}:
    			// Ensure delegate is closed so Read doesn't block forever.
    			close(dr.c)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top