Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for found$ (0.16 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

                    doLast {
                        def result = configurations.conf.incoming.resolutionResult
                        boolean found = false
                        result.allComponents {
                            if (id instanceof ModuleComponentIdentifier && id.module == 'moduleA') {
                                found = true
                                assert variants.size() == 1
                                assert variants[0].owner.module == 'moduleA'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	filteredInfos, allInfos := filterTerminatedContainerInfoAndAssembleByPodCgroupKey(infos)
    	assert.Len(t, filteredInfos, 5)
    	assert.Len(t, allInfos, 11)
    	for _, c := range []string{"/pod0-i", "/pod0-c0"} {
    		if _, found := filteredInfos[c]; !found {
    			t.Errorf("%q is expected to be in the output\n", c)
    		}
    	}
    
    	expectedInfoKeys := []string{"pod0-i-terminated-1", "pod0-c0-terminated-1", "pod0-i-terminated-2", "pod0-c0-terminated-2", "pod0-i", "pod0-c0"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

     *
     * <p>Uses some deep hacks to avoid some expensive reflections and the use of exceptions when a particular property or method cannot be found,
     * for example, when a decorated object is used as the delegate of a configuration closure. Also uses some hacks to insert some customised type
     * coercion and error reporting. Enjoy.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top