Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,692 for spring (0.59 sec)

  1. cmd/data-scanner.go

    		}
    	}
    
    	return nil
    }
    
    // scannerItem represents each file while walking.
    type scannerItem struct {
    	Path        string
    	bucket      string // Bucket.
    	prefix      string // Only the prefix if any, does not have final object name.
    	objectName  string // Only the object name without prefixes.
    	replication replicationConfig
    	lifeCycle   *lifecycle.Lifecycle
    	Typ         fs.FileMode
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    	tokenDuration  int64
    	name           string
    	serviceAccount string
    	filename       string
    	outputDir      string
    	clusterID      string
    	ingressIP      string
    	internalIP     string
    	externalIP     string
    	ingressSvc     string
    	autoRegister   bool
    	dnsCapture     bool
    	ports          []string
    	resourceLabels []string
    	annotations    []string
    	namespace      string
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    	res := sets.New[string]()
    	for _, v := range r.Spec.Versions {
    		if v.Served {
    			res.Insert(v.Name)
    		}
    	}
    	return res
    }
    
    func checkInstallPermissions(cli kube.CLIClient, istioNamespace string) diag.Messages {
    	Resources := []struct {
    		namespace string
    		group     string
    		version   string
    		resource  string
    	}{
    		{
    			version:  "v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/grappler/grappler.cc

      TF_SetStatus(status, TF_OK, "");
      const std::unordered_set<std::string>& nodes =
          reinterpret_cast<const tensorflow::grappler::GrapplerItem*>(item)
              ->NodesToPreserve();
      *num_values = nodes.size();
      *storage_size = 0;
      for (const std::string& str : nodes) {
        *storage_size += str.size();
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/bugreport/bugreport.go

    // slice of versions for proxies. Any errors are embedded in the revision strings.
    func getIstioVersions(ctx cli.Context, istioNamespace string, revisions []string) (map[string]string, map[string][]string) {
    	istioVersions := make(map[string]string)
    	proxyVersionsMap := make(map[string]sets.String)
    	proxyVersions := make(map[string][]string)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    // compile gives the resulting package a packagepath of testdata/<filebasename>.
    func compile(t *testing.T, dirname, filename, outdirname string, packageFiles map[string]string, pkgImports ...string) string {
    	// filename must end with ".go"
    	basename, ok := strings.CutSuffix(filepath.Base(filename), ".go")
    	if !ok {
    		t.Fatalf("filename doesn't end in .go: %s", filename)
    	}
    	objname := basename + ".o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    // It records the actual token string in tok.text.
    // A single trailing newline (LF or CRLF) will be removed from comment tokens.
    func (in *input) endToken(kind tokenKind) {
    	in.token.kind = kind
    	text := string(in.tokenStart[:len(in.tokenStart)-len(in.remaining)])
    	if kind.isComment() {
    		if strings.HasSuffix(text, "\r\n") {
    			text = text[:len(text)-2]
    		} else {
    			text = strings.TrimSuffix(text, "\n")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadelf/ldelf.go

    )
    
    type elfAttribute struct {
    	tag  uint64
    	sval string
    	ival uint64
    }
    
    type elfAttributeList struct {
    	data []byte
    	err  error
    }
    
    func (a *elfAttributeList) string() string {
    	if a.err != nil {
    		return ""
    	}
    	nul := bytes.IndexByte(a.data, 0)
    	if nul < 0 {
    		a.err = io.EOF
    		return ""
    	}
    	s := string(a.data[:nul])
    	a.data = a.data[nul+1:]
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    mapping:
    	for _, m := range p.Mapping {
    		var noVolumeFile string
    		var baseName string
    		var dirName string
    		if m.File != "" {
    			noVolumeFile = strings.TrimPrefix(m.File, filepath.VolumeName(m.File))
    			baseName = filepath.Base(m.File)
    			dirName = filepath.Dir(noVolumeFile)
    		}
    
    		for _, path := range filepath.SplitList(searchPath) {
    			var fileNames []string
    			if m.BuildID != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    		newAccessor, _ := meta.Accessor(newCustomResourceObject)
    		newAccessor.SetGeneration(oldAccessor.GetGeneration() + 1)
    	}
    }
    
    func copyNonMetadata(original map[string]interface{}) map[string]interface{} {
    	ret := make(map[string]interface{})
    	for key, val := range original {
    		if key == "metadata" {
    			continue
    		}
    		ret[key] = val
    	}
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top