Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 582 for fetches (0.2 sec)

  1. cluster/gce/gci/configure.sh

      - sudo systemctl status kube-node-installation
      - sudo systemctl status kube-node-configuration
    EOF
    }
    
    # A function that fetches a GCE metadata value and echoes it out.
    # Args:
    #   $1 : URL path after /computeMetadata/v1/ (without heading slash).
    #   $2 : An optional default value to echo out if the fetch fails.
    #
    # NOTE: this function is duplicated in configure-helper.sh, any changes here
    # should be duplicated there as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/types.go

    const (
    	// GetChangeDetectionStrategy is a mode in which kubelet fetches
    	// necessary objects directly from apiserver.
    	GetChangeDetectionStrategy ResourceChangeDetectionStrategy = "Get"
    	// TTLCacheChangeDetectionStrategy is a mode in which kubelet uses
    	// ttl cache for object directly fetched from apiserver.
    	TTLCacheChangeDetectionStrategy ResourceChangeDetectionStrategy = "Cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    func renderMatches(trafficMatches []*v1alpha3.HTTPMatchRequest) string {
    	if len(trafficMatches) == 0 {
    		return "everything"
    	}
    
    	matches := []string{}
    	for _, trafficMatch := range trafficMatches {
    		matches = append(matches, renderMatch(trafficMatch))
    	}
    	return strings.Join(matches, ", ")
    }
    
    func renderMatch(match *v1alpha3.HTTPMatchRequest) string {
    	retval := "Match: "
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. cmd/notification.go

    		go func(index int) {
    			defer wg.Done()
    			errs[index] = sys.peerClients[index].ReloadSiteReplicationConfig(ctx)
    		}(index)
    	}
    
    	wg.Wait()
    	return errs
    }
    
    // GetLastDayTierStats fetches per-tier stats of the last 24hrs from all peers
    func (sys *NotificationSys) GetLastDayTierStats(ctx context.Context) DailyAllTierStats {
    	errs := make([]error, len(sys.allPeerClients))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux.go

    // Pull in entersyscall/exitsyscall for Syscall/Syscall6.
    //
    // Note that this can't be a push linkname because the runtime already has a
    // nameless linkname to export to assembly here and in x/sys. Additionally,
    // entersyscall fetches the caller PC and SP and thus can't have a wrapper
    // inbetween.
    
    //go:linkname runtime_entersyscall runtime.entersyscall
    func runtime_entersyscall()
    
    //go:linkname runtime_exitsyscall runtime.exitsyscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tape.h

      // ForwardAccumulators, where more deeply nested accumulators should not see
      // computations from less deeply nested accumulators.
      bool BusyAccumulating() const { return call_state_.top().accumulating; }
    
      // Fetches the current Jacobian-vector product associated with `tensor_id`, or
      // a nullptr if none is available.
      //
      // Returns a borrowed reference, i.e. does not run VSpace::MarkAsResult on its
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    		// issue #37741.
    		// Only send a signal if there isn't already one pending.
    		signalM(mp, sigPreempt)
    	}
    
    	if GOOS == "darwin" || GOOS == "ios" {
    		execLock.runlock()
    	}
    }
    
    // sigFetchG fetches the value of G safely when running in a signal handler.
    // On some architectures, the g value may be clobbered when running in a VDSO.
    // See issue #32912.
    //
    //go:nosplit
    func sigFetchG(c *sigctxt) *g {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcs/vcs.go

    	DownloadCmd: []string{"pull --ff-only", "submodule update --init --recursive"},
    
    	TagCmd: []tagCmd{
    		// tags/xxx matches a git tag named xxx
    		// origin/xxx matches a git branch named xxx on the default remote repository
    		{"show-ref", `(?:tags|origin)/(\S+)$`},
    	},
    	TagLookupCmd: []tagCmd{
    		{"show-ref tags/{tag} origin/{tag}", `((?:tags|origin)/\S+)$`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        data or control dependencies, connected to the associated `tf_executor.fetch`
        op. The order of ops will be preserved. Functions named `main` with no
        `tf.entry_function` attribute will not be pruned, as such graphs/functions may
        have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
        not provided at certain stages of IR transformation (e.g. pre-placement).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	}
    	return info.storages[info.storageVersion].CustomResource, nil
    }
    
    // getOrCreateServingInfoFor gets the CRD serving info for the given CRD UID if the key exists in the storage map.
    // Otherwise the function fetches the up-to-date CRD using the given CRD name and creates CRD serving info.
    func (r *crdHandler) getOrCreateServingInfoFor(uid types.UID, name string) (*crdInfo, error) {
    	storageMap := r.customStorage.Load().(crdStorageMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top