Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,003 for need (0.05 sec)

  1. src/cmd/objdump/objdump_test.go

    	}
    	need := []string{
    		"TEXT main.main(SB)",
    	}
    
    	if printCode {
    		need = append(need, `	Println("hello, world")`)
    	} else {
    		need = append(need, srcfname+":6")
    	}
    
    	switch goarch {
    	case "amd64", "386":
    		need = append(need, x86Need...)
    	case "arm":
    		need = append(need, armNeed...)
    	case "arm64":
    		need = append(need, arm64Need...)
    	case "ppc64", "ppc64le":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. doc/next/9-todo.md

    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    CL 561935 - crypto CL that used purego tag and mentioned accepted-but-not-implemented proposal https://go.dev/issue/23172 to document purego tag; doesn't need a release note
    CL 568340 - fixed a spurious race in time.Ticker.Reset (added via accepted proposal https://go.dev/issue/33184), doesn't seem to need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/initializer/interfaces.go

    // WantsExternalKubeClientSet defines a function which sets external ClientSet for admission plugins that need it
    type WantsExternalKubeClientSet interface {
    	SetExternalKubeClientSet(kubernetes.Interface)
    	admission.InitializationValidator
    }
    
    // WantsExternalKubeInformerFactory defines a function which sets InformerFactory for admission plugins that need it
    type WantsExternalKubeInformerFactory interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. ci/official/utilities/setup_macos.sh

      chmod +x "/usr/local/bin/bazel"
    fi
    
    # "TFCI_MACOS_UPGRADE_PYENV_ENABLE" is used to decide if we need to upgrade the
    # Pyenv version. We enable this for macOS x86 builds as the default Pyenv on
    # those VMs does not support installing Python 3.12 and above which we need
    # for running smoke tests in nightly/release wheel builds.
    if [[ "${TFCI_MACOS_UPGRADE_PYENV_ENABLE}" == 1 ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/distributions-core/build.gradle.kts

            because("We always need a BuildStateRegistry service implementation for certain code in ':core' to work.")
        }
        pluginsRuntimeOnly(project(":tooling-api-builders")) {
            because("We always need a BuildEventListenerFactory service implementation for ':launcher' to create global services.")
        }
        pluginsRuntimeOnly(project(":version-control")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/util/util.go

    	}
    
    	// Needs to create a new sandbox when network namespace changed.
    	if sandboxStatus.GetLinux().GetNamespaces().GetOptions().GetNetwork() != NetworkNamespaceForPod(pod) {
    		klog.V(2).InfoS("Sandbox for pod has changed. Need to start a new one", "pod", klog.KObj(pod))
    		return true, sandboxStatus.Metadata.Attempt + 1, ""
    	}
    
    	// Needs to create a new sandbox when the sandbox does not have an IP address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    func (f *WorkFile) AddGodebug(key, value string) error {
    	need := true
    	for _, g := range f.Godebug {
    		if g.Key == key {
    			if need {
    				g.Value = value
    				f.Syntax.updateLine(g.Syntax, "godebug", key+"="+value)
    				need = false
    			} else {
    				g.Syntax.markRemoved()
    				*g = Godebug{}
    			}
    		}
    	}
    
    	if need {
    		f.addNewGodebug(key, value)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

         *
         * <p>Use for any non-model types for which services or user provided constructor values need to injected. This is simply a convenience for {@link #injectScheme()}.
         *
         * @param services The services to make available to instances.
         */
        InstanceGenerator inject(ServiceLookup services);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/testing/fstest/mapfs.go

    	// Directory, possibly synthesized.
    	// Note that file can be nil here: the map need not contain explicit parent directories for all its files.
    	// But file can also be non-nil, in case the user wants to set metadata for the directory explicitly.
    	// Either way, we need to construct the list of children of this directory.
    	var list []mapFileInfo
    	var elem string
    	var need = make(map[string]bool)
    	if name == "." {
    		elem = "."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

        }
    
        boolean testClassExists(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        boolean testClassDoesNotExist(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        TestClassExecutionResult testClass(String testClass) {
            parseResults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top