Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for getg (0.3 sec)

  1. cmd/kubeadm/app/constants/constants.go

    func getSkewedKubernetesVersion(n int) *version.Version {
    	versionInfo := componentversion.Get()
    	return getSkewedKubernetesVersionImpl(&versionInfo, n)
    }
    
    func getSkewedKubernetesVersionImpl(versionInfo *apimachineryversion.Info, n int) *version.Version {
    	// TODO: update if the kubeadm version gets decoupled from the Kubernetes version.
    	// This would require keeping track of the supported skew in a table.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. cmd/api-response.go

    	// request to get next set of objects. Server lists objects in alphabetical
    	// order Note: This element is returned only if you have delimiter request parameter
    	// specified. If response does not include the NextMaker and it is truncated,
    	// you can use the value of the last Key in the response as the marker in the
    	// subsequent request to get the next set of object keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    		return
    	}
    
    	if r.Form.Get(stsVersion) != stsAPIVersion {
    		writeSTSErrorResponse(ctx, w, ErrSTSMissingParameter,
    			fmt.Errorf("Invalid STS API version %s, expecting %s", r.Form.Get("Version"), stsAPIVersion))
    		return
    	}
    
    	ldapUsername := r.Form.Get(stsLDAPUsername)
    	ldapPassword := r.Form.Get(stsLDAPPassword)
    
    	if ldapUsername == "" || ldapPassword == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle.go

    	// TransitionTier name of transition storage class
    	TransitionTier = "transition-tier"
    )
    
    // LifecycleSys - Bucket lifecycle subsystem.
    type LifecycleSys struct{}
    
    // Get - gets lifecycle config associated to a given bucket name.
    func (sys *LifecycleSys) Get(bucketName string) (lc *lifecycle.Lifecycle, err error) {
    	lc, _, err = globalBucketMetadataSys.GetLifecycleConfig(bucketName)
    	return lc, err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *             listener runs in the thread that completes the {@code ListenableFuture}.
       *         <li>When a listener is attached to a {@code ListenableFuture} and the {@code
       *             ListenableFuture} gets cancelled, the listener runs immediately in the thread that
       *             cancelled the {@code Future}.
       *       </ol>
       *       Given all these possibilities, it is frequently possible for listeners to execute in UI
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

    }
    
    # Initializes variables used by the log-* functions.
    #
    # get-metadata-value must be defined before calling this function.
    #
    # NOTE: this function is duplicated in configure-helper.sh, any changes here
    # should be duplicated there as well.
    function log-init {
      # Used by log-* functions.
      LOG_CLUSTER_ID=$(get-metadata-value 'instance/attributes/cluster-uid' 'get-metadata-value-error')
      LOG_INSTANCE_NAME=$(hostname)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashMap.java

        return (delegate != null) ? delegate.containsKey(key) : indexOf(key) != -1;
      }
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        Map<K, V> delegate = delegateOrNull();
        if (delegate != null) {
          return delegate.get(key);
        }
        int index = indexOf(key);
        if (index == -1) {
          return null;
        }
        accessEntry(index);
        return value(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		if len(cur.In) == 0 {
    			for _, outEdge := range cur.Out {
    				delete(outEdge.Dest.In, cur)
    			}
    			continue
    		}
    
    		// Get the parent. This works since at this point cur.In must contain only
    		// one element.
    		if len(cur.In) != 1 {
    			panic("Get parent assertion failed. cur.In expected to be of length 1.")
    		}
    		var parent *Node
    		for _, edge := range cur.In {
    			parent = edge.Src
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    			}
    		}
    	}
    	if len(found) != nKeys {
    		t.Fatalf("missing value")
    	}
    }
    
    func TestMapIterOrder(t *testing.T) {
    	sizes := []int{3, 7, 9, 15}
    	if abi.MapBucketCountBits >= 5 {
    		// it gets flaky (often only one iteration order) at size 3 when abi.MapBucketCountBits >=5.
    		t.Fatalf("This test becomes flaky if abi.MapBucketCountBits(=%d) is 5 or larger", abi.MapBucketCountBits)
    	}
    	for _, n := range sizes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. internal/grid/connection.go

    		if err != nil {
    			if !xnet.IsNetworkOrHostDown(err, true) {
    				gridLogIf(ctx, fmt.Errorf("ws write: %w", err))
    			}
    			return
    		}
    
    		if buf.Cap() > writeBufferSize*4 {
    			// Reset buffer if it gets too big, so we don't keep it around.
    			buf = bytes.Buffer{}
    		}
    	}
    }
    
    func (c *Connection) handleMsg(ctx context.Context, m message, subID *subHandlerID) {
    	switch m.Op {
    	case OpMuxServerMsg:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top