Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for clen (0.06 sec)

  1. pkg/kubelet/pod_workers.go

    	Static bool
    }
    
    // podWork is the internal changes
    type podWork struct {
    	// WorkType is the type of sync to perform - sync (create), terminating (stop
    	// containers), terminated (clean up and write status).
    	WorkType PodWorkerState
    
    	// Options contains the data to sync.
    	Options UpdatePodOptions
    }
    
    // PodWorkers is an abstract interface for testability.
    type PodWorkers interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    	var absDir string
    	if filepath.IsAbs(dir) {
    		absDir = filepath.Clean(dir)
    	} else {
    		absDir = filepath.Join(base.Cwd(), dir)
    	}
    
    	bp, err := cfg.BuildContext.ImportDir(absDir, 0)
    	if err != nil && (bp == nil || len(bp.IgnoredGoFiles) == 0) {
    		// golang.org/issue/32917: We should resolve a relative path to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    // as an RFC 3339 time in UTC.
    type Time3339 time.Time
    
    func (t *Time3339) UnmarshalJSON(b []byte) error {
    	if len(b) < 2 || b[0] != '"' || b[len(b)-1] != '"' {
    		return fmt.Errorf("types: failed to unmarshal non-string value %q as an RFC 3339 time", b)
    	}
    	tm, err := time.Parse(time.RFC3339, string(b[1:len(b)-1]))
    	if err != nil {
    		return err
    	}
    	*t = Time3339(tm)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			errs := tc.options.Validate()
    			if len(errs) > 0 && !tc.expectErrors {
    				t.Errorf("expected no errors, errors found %+v", errs)
    			}
    
    			if len(errs) == 0 && tc.expectErrors {
    				t.Errorf("expected errors, no errors found")
    			}
    
    			if len(errs) > 0 && tc.expectErrors {
    				gotErr := utilerrors.NewAggregate(errs).Error()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    func matchPrefix(s, prefix string) bool {
    	i := strings.Index(s, ":")
    	if i < 0 {
    		return false
    	}
    	j := strings.LastIndex(s[:i], "/")
    	s = s[j+1:]
    	if len(s) <= len(prefix) || s[:len(prefix)] != prefix {
    		return false
    	}
    	switch s[len(prefix)] {
    	case '[', ':':
    		return true
    	}
    	return false
    }
    
    func partitionStrings(prefix string, strs []string) (matched, unmatched []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	if len(newUncounted) != len(uncountedStatus.Succeeded) {
    		updated = true
    		status.Succeeded += int32(len(uncountedStatus.Succeeded) - len(newUncounted))
    		uncountedStatus.Succeeded = newUncounted
    	}
    	newUncounted = filterInUncountedUIDs(uncountedStatus.Failed, uidsWithFinalizer)
    	if len(newUncounted) != len(uncountedStatus.Failed) {
    		updated = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    	}
    
    	r.buildList = mg.BuildList()
    	r.buildListVersion = make(map[string]string, len(r.buildList))
    	for _, m := range r.buildList {
    		r.buildListVersion[m.Path] = m.Version
    	}
    	return true
    }
    
    func reqsFromGoMod(f *modfile.File) []module.Version {
    	reqs := make([]module.Version, len(f.Require), 2+len(f.Require))
    	for i, r := range f.Require {
    		reqs[i] = r.Mod
    	}
    	if f.Go != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      tar xzvf $tmp_dir\$filename -C $tmp_dir
      Move-Item -Force $tmp_dir\kubernetes\node\bin\* ${env:NODE_DIR}\
      Move-Item -Force `
          $tmp_dir\kubernetes\LICENSES ${env:LICENSE_DIR}\LICENSES_kubernetes
    
      # Clean up the temporary directory
      Remove-Item -Force -Recurse $tmp_dir
    }
    
    # Downloads the csi-proxy binaries from kube-env's CSI_PROXY_STORAGE_PATH and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

        fi
        node_port_range=""
        if [[ "${NODE_PORT_RANGE}" != "" ]] ; then
            node_port_range="--service-node-port-range=${NODE_PORT_RANGE}"
        fi
    
        if [[ "${REUSE_CERTS}" != true ]]; then
          # Clean previous dynamic certs
          # This file is owned by root, so we can't always overwrite it (depends if
          # we run the script as root or not). Let's remove it, that is something we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * be used.
         *
         * @deprecated [SSLSocketFactory] does not expose its [X509TrustManager], which is a field that
         *     OkHttp needs to build a clean certificate chain. This method instead must use reflection
         *     to extract the trust manager. Applications should prefer to call
         *     `sslSocketFactory(SSLSocketFactory, X509TrustManager)`, which avoids such reflection.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top