Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 582 for fetches (0.52 sec)

  1. cni/pkg/plugin/kubernetes.go

    				pi.ProxyType = c.Args[1]
    			}
    			if c.SecurityContext != nil {
    				pi.ProxyUID = c.SecurityContext.RunAsUser
    				pi.ProxyGID = c.SecurityContext.RunAsGroup
    			}
    		}
    	}
    	return pi
    }
    
    // containers fetches all containers in the pod.
    // This is used to extract init containers (istio-init and istio-validation), and the sidecar.
    // The sidecar can be a normal container or init in Kubernetes 1.28+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/credentials.go

    // this is safe themselves.
    func (t *DefaultTokenProvider) RequireTransportSecurity() bool {
    	return false
    }
    
    // GetToken fetches a token to attach to a request. Returning "", nil will cause no header to be
    // added; while a non-nil error will block the request If the token selected is not found, no error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. security/pkg/credentialfetcher/plugin/gce.go

    		exp.String(), gracePeriod.String(), rotate)
    	return rotate
    }
    
    // GetPlatformCredential fetches the GCE VM identity jwt token from its metadata server,
    // and write it to jwtPath. The local copy of the token in jwtPath is used by both
    // Envoy STS client and istio agent to fetch certificate and access token.
    // Note: this function only works in a GCE VM environment.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/util/util.go

    	if err != nil {
    		return nil, fmt.Errorf(
    			"error performing CSI migration checks and translation for inline volume %q: %v",
    			podVolume.Name,
    			err)
    	}
    	return spec, nil
    }
    
    // getPVCFromCache fetches the PVC object with the given namespace and
    // name from the shared internal PVC store.
    // This method returns an error if a PVC object does not exist in the cache
    // with the given namespace/name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/wait.go

    	WaitForPodsWithLabel(kvLabel string) error
    	// WaitForPodToDisappear waits for the given Pod in the kube-system namespace to be deleted
    	WaitForPodToDisappear(staticPodName string) error
    	// WaitForStaticPodSingleHash fetches sha256 hash for the control plane static pod
    	WaitForStaticPodSingleHash(nodeName string, component string) (string, error)
    	// WaitForStaticPodHashChange waits for the given static pod component's static pod hash to get updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/host_stats_provider.go

    }
    
    type hostStatsProvider struct {
    	// osInterface is the interface for syscalls.
    	osInterface kubecontainer.OSInterface
    	// podEtcHostsPathFunc fetches a pod etc hosts path by uid.
    	podEtcHostsPathFunc PodEtcHostsPathFunc
    	// podLogsDirectory is the root directory path for pod logs.
    	podLogsDirectory string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/git.go

    	refsErr error
    
    	localTagsOnce sync.Once
    	localTags     sync.Map // map[string]bool
    }
    
    const (
    	// How much have we fetched into the git repo (in this process)?
    	fetchNone = iota // nothing yet
    	fetchSome        // shallow fetches of individual hashes
    	fetchAll         // "fetch -t origin": get all remote branches and tags
    )
    
    // loadLocalTags loads tag references from the local git cache
    // into the map r.localTags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    // Checks whether the value of a constant equals the given float, regardless
    // of the tensor dimension.
    class FloatValueEquals<string val> : Constraint<CPred<
      "FloatValueEquals($0, " # val # ")">>;
    
    // Fetches the default or null attribute, used for pattern matching.
    def DefaultOrNullAttr : NativeCodeCall<"DefaultOrNullAttr($_builder, $0)">;
    
    // Returns true if the given op is a StableHLO constant op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    					hostname)
    			}
    		}
    
    		esc.c.opts.XDSUpdater.EDSUpdate(shard, string(hostname), namespace, endpoints)
    	}
    }
    
    // getPod fetches a pod by name or IP address.
    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    // nested module which exhibit a more friendly "V2-like" structure.
    // This is only intended for V1 compatibility mode where the bridge runs without
    // feed/fetches on session create/extend.
    struct TPUBridgeExecutorIslandOutlining
        : public impl::TPUBridgeExecutorIslandOutliningPassBase<
              TPUBridgeExecutorIslandOutlining> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top