Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 582 for fetches (0.28 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    
      // _Arg nodes in a top-level function represent feeds and _Retval nodes in a
      // top-level function represent fetches.
      if (stack_depth == 1 &&
          (node.type_string() == "_Arg" || node.type_string() == "_Retval")) {
        absl::string_view uncompilable_reason = "top level _Arg or _Retval";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

          $kube_env_table[$key] = $val.Trim("'", " ", "`"")
      }
    
      return ${kube_env_table}
    }
    
    # Fetches the kube-env from the instance metadata.
    #
    # Returns: a PowerShell Hashtable object containing the key-value pairs from
    #   kube-env.
    function Fetch-KubeEnv {
      # Testing / debugging:
      # First:
      #   ${kube_env} = Get-InstanceMetadataAttribute 'kube-env'
      # or:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/join.go

    	return j.outputWriter
    }
    
    // PatchesDir returns the folder where patches for components are stored
    func (j *joinData) PatchesDir() string {
    	// If provided, make the flag value override the one in config.
    	if len(j.patchesDir) > 0 {
    		return j.patchesDir
    	}
    	if j.cfg.Patches != nil {
    		return j.cfg.Patches.Directory
    	}
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. cmd/bucket-policy-handlers_test.go

    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testGetBucketPolicyHandler, endpoints: []string{"PutBucketPolicy", "GetBucketPolicy"}})
    }
    
    // testGetBucketPolicyHandler - Test for end point which fetches the access policy json of the given bucket.
    func testGetBucketPolicyHandler(obj ObjectLayer, instanceType, bucketName string, apiRouter http.Handler,
    	credentials auth.Credentials, t *testing.T,
    ) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    			cb.req.Push.AddMetric(model.DuplicatedClusters, c.Name, cb.proxyID,
    				fmt.Sprintf("Duplicate cluster %s found while pushing CDS", c.Name))
    		}
    	}
    	return out
    }
    
    // getAllCachedSubsetClusters either fetches all cached clusters for a given key (there may be multiple due to subsets)
    // and returns them along with allFound=True, or returns allFound=False indicating a cache miss. In either case,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry.go

    	if hasDefaultProvider {
    		// todo: what do we want to do with more than one default provider?
    		// for now, use only the first provider.
    		fetched := t.fetchProvider(providerNames[0])
    		clientSpec.Provider = fetched
    		serverSpec.Provider = fetched
    	}
    
    	for _, m := range ct.Tracing {
    		names := getProviderNames(m.Providers)
    
    		specs := []*TracingSpec{&clientSpec, &serverSpec}
    		if m.Match != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. cmd/admin-heal-ops.go

    }
    
    // PopHealStatusJSON - Called by heal-status API. It fetches the heal
    // status results from global state and returns its JSON
    // representation. The clientToken helps ensure there aren't
    // conflicting clients fetching status.
    func (ahs *allHealState) PopHealStatusJSON(hpath string,
    	clientToken string) ([]byte, APIErrorCode,
    ) {
    	// fetch heal state for given path
    	h, exists := ahs.getHealSequence(hpath)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status.go

    	if _, err := kl.patchNodeStatus(originalNode, node); err != nil {
    		// The originalNode is probably stale, but we know that the current state of kubelet would turn
    		// the node to be ready. Retry using syncNodeStatus() which fetches from the apiserver.
    		klog.ErrorS(err, "Error updating node status, will retry with syncNodeStatus")
    
    		// The reversed kl.syncNodeStatusMux.Unlock/Lock() below to allow kl.syncNodeStatus() execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/import.go

    			}
    			if !ok || v == "none" {
    				continue
    			}
    			m := module.Version{Path: prefix, Version: v}
    
    			root, isLocal, err := fetch(ctx, m)
    			if err != nil {
    				if sumErr := (*sumMissingError)(nil); errors.As(err, &sumErr) {
    					// We are missing a sum needed to fetch a module in the build list.
    					// We can't verify that the package is unique, and we may not find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug.go

    	Labels       map[string]string   `json:"labels"`
    	Metadata     *model.NodeMetadata `json:"metadata,omitempty"`
    	Locality     *core.Locality      `json:"locality,omitempty"`
    	Watches      map[string][]string `json:"watches,omitempty"`
    }
    
    // AdsClients is collection of AdsClient connected to this Istiod.
    type AdsClients struct {
    	Total     int         `json:"totalClients"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top