Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 347 for GETs (0.12 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    	// index of the latest store that this value transitively depends.
    	// The i-th store in the current block gets store number 3*i. A nil
    	// check that depends on the i-th store gets store number 3*i+1.
    	// Other values that depends on the i-th store gets store number 3*i+2.
    	// Special case: 0 -- unassigned, 1 or 2 -- the latest store it depends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers.go

    	}
    
    	return &kubecontainer.Container{
    		ID:    kubecontainer.ContainerID{Type: m.runtimeName, ID: s.Id},
    		State: kubecontainer.SandboxToContainerState(s.State),
    	}, nil
    }
    
    // getImageUser gets uid or user name that will run the command(s) from image. The function
    // guarantees that only one of them is set.
    func (m *kubeGenericRuntimeManager) getImageUser(ctx context.Context, image string) (*int64, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache_test.go

    	_, err = sc.GenerateSecret(security.WorkloadKeyCertResourceName)
    	if err != nil {
    		t.Errorf("failed to generate certificate for trustAnchor test case")
    	}
    	// Ensure Root cert call back gets invoked once
    	u.Expect(map[string]int{security.RootCertReqResourceName: 1})
    	u.Reset()
    
    	caClientRootCert := []byte(strings.TrimRight(fakeCACli.GeneratedCerts[0][2], "\n"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. pkg/scheduler/util/assumecache/assume_cache.go

    	c.rwMutex.RLock()
    	defer c.rwMutex.RUnlock()
    
    	objInfo, err := c.getObjInfo(key)
    	if err != nil {
    		return nil, err
    	}
    	return objInfo.latestObj, nil
    }
    
    // GetAPIObj gets the informer cache's version by its key.
    func (c *AssumeCache) GetAPIObj(key string) (interface{}, error) {
    	c.rwMutex.RLock()
    	defer c.rwMutex.RUnlock()
    
    	objInfo, err := c.getObjInfo(key)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/etcd/etcd.go

    	// MemberPromote promotes a member from raft learner (non-voting) to raft voting member.
    	MemberPromote(ctx context.Context, id uint64) (*clientv3.MemberPromoteResponse, error)
    
    	// Status gets the status of the endpoint.
    	Status(ctx context.Context, endpoint string) (*clientv3.StatusResponse, error)
    
    	// Sync synchronizes client's endpoints with the known endpoints from the etcd membership.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/runtime/mcache.go

    	//
    	// We have not yet allocated anything new into the span, but we
    	// assume that all of its slots will get used, so this makes
    	// heapLive an overestimate.
    	//
    	// When the span gets uncached, we'll fix up this overestimate
    	// if necessary (see releaseAll).
    	//
    	// We pick an overestimate here because an underestimate leads
    	// the pacer to believe that it's in better shape than it is,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/apis/core/helper/helpers.go

    	if pvc == nil {
    		return false
    	}
    
    	if pvc.Status.AllocatedResourceStatuses != nil {
    		return true
    	}
    	return false
    }
    
    // GetTolerationsFromPodAnnotations gets the json serialized tolerations data from Pod.Annotations
    // and converts it to the []Toleration type in core.
    func GetTolerationsFromPodAnnotations(annotations map[string]string) ([]core.Toleration, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

        public ArtifactRepository getLocalRepository() {
            return request.getLocalRepository();
        }
    
        public List<String> getGoals() {
            return request.getGoals();
        }
    
        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/runtime/malloc_test.go

    	// tiny slot is partially filled.
    	runtime.Escape(new(uint32))
    
    	// Create a 12-byte object, which fits into the
    	// tiny slot. If it actually gets place there,
    	// then the field "a" will be improperly aligned
    	// for atomic access on 32-bit architectures.
    	// This won't be true if issue 36606 gets resolved.
    	tinyObj12 := runtime.Escape(new(obj12))
    
    	// Try to atomically access "x.a".
    	atomic.StoreUint64(&tinyObj12.a, 10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_getters.go

    // specified pod. This directory may not exist if the pod does not exist.
    func (kl *Kubelet) GetPodDir(podUID types.UID) string {
    	return kl.getPodDir(podUID)
    }
    
    // ListPodsFromDisk gets a list of pods that have data directories.
    func (kl *Kubelet) ListPodsFromDisk() ([]types.UID, error) {
    	return kl.listPodsFromDisk()
    }
    
    // HandlerSupportsUserNamespaces checks whether the specified handler supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top