Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of about 10,000 for found$ (0.35 sec)

  1. cmd/kubeadm/app/apis/kubeadm/argument.go

    func SetArgValues(args []Arg, name, value string, nArgs int) []Arg {
    	var count int
    	var found bool
    	for i := len(args) - 1; i >= 0; i-- {
    		if args[i].Name == name {
    			found = true
    			args[i].Value = value
    			if nArgs < 1 {
    				continue
    			}
    			count++
    			if count >= nArgs {
    				return args
    			}
    		}
    	}
    	if found {
    		return args
    	}
    	args = append(args, Arg{Name: name, Value: value})
    	return args
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/context.go

    			}
    			if len(otherNamespaces) > 0 {
    				sort.Strings(otherNamespaces)
    				warnings = append(warnings, fmt.Sprintf("hostname %q not found in namespace %q, but it was found in namespace(s) %v",
    					g, namespace, strings.Join(otherNamespaces, ", ")))
    			} else {
    				warnings = append(warnings, fmt.Sprintf("hostname %q not found", g))
    			}
    			foundUnusable = true
    			continue
    		}
    		svcKey := svc.Key()
    		for port := range ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/internal/sysinfo/cpuinfo_linux.go

    	buf := make([]byte, 512)
    	err := readLinuxProcCPUInfo(buf)
    	if err != nil {
    		return ""
    	}
    
    	scanner := bufio.NewScanner(bytes.NewReader(buf))
    	for scanner.Scan() {
    		key, value, found := strings.Cut(scanner.Text(), ": ")
    		if !found {
    			continue
    		}
    		switch strings.TrimSpace(key) {
    		case "Model Name", "model name":
    			modelName = value
    		case "CPU MHz", "cpu MHz":
    			cpuMHz = value
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/context.go

    		collectionReporter: collectionReporter,
    		found:              map[key]*resource.Instance{},
    		foundCollections:   map[config.GroupVersionKind]map[key]*resource.Instance{},
    	}
    }
    
    type istiodContext struct {
    	stores             map[cluster.ID]model.ConfigStore
    	cancelCh           <-chan struct{}
    	messages           map[string]*diag.Messages
    	collectionReporter CollectionReporterFn
    	found              map[key]*resource.Instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. releasenotes/notes/gateway-api118.yaml

        Found managed gateway: default/gateway
        {{< /text >}}
    
        If you see "Found managed gateway", you may be impacted by this change.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/ScalaRuntimeTest.groovy

        def setup() {
            project.pluginManager.apply(ScalaBasePlugin)
        }
    
        def "inferred Scala class path contains 'scala-compiler' repository dependency and 'compiler-bridge' matching 'scala-library' Jar found on class path"() {
            project.repositories {
                mavenCentral()
            }
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/force_xla_constants_on_host_pass_test.cc

      std::unique_ptr<Graph> graph;
      TF_ASSERT_OK(ForceXlaConstantsOnHost(root, &flib_def, &graph));
    
      bool found = false;
      for (Node* node : graph->nodes()) {
        if (CanCreateXlaKernel(node->def())) {
          EXPECT_FALSE(found);
          found = true;
          std::vector<int32> hostmem_attr;
          EXPECT_TRUE(TryGetNodeAttr(node->def(), "_input_hostmem", &hostmem_attr));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/generate.txt

    // license that can be found in the LICENSE file.
    
    // Simple test for go generate.
    
    // We include a build tag that go generate should ignore.
    
    // +build ignore
    
    //go:generate echo Success
    
    package p
    -- generate/alias.go --
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

                if (constructor.getAnnotation(Inject.class) != null) {
                    if (match != null) {
                        // There was a previously found a match. This means a second constructor with `@Inject` has been found.
                        throw new ServiceValidationException(
                            String.format(
                                "Multiple constructor annotated with @Inject for %s.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. test/fixedbugs/bug122.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	// should allow at most 2 sizes
    	a := make([]int, 10, 20, 30, 40); // ERROR "too many|expects 2 or 3 arguments; found 5"
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 334 bytes
    - Viewed (0)
Back to top