Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 424 for loadOps (0.17 sec)

  1. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    func DocMapToUpgradeConfiguration(gvkmap kubeadmapi.DocumentMap) (*kubeadmapi.UpgradeConfiguration, error) {
    	return documentMapToUpgradeConfiguration(gvkmap, false)
    }
    
    // LoadUpgradeConfigurationFromFile loads UpgradeConfiguration from a file.
    func LoadUpgradeConfigurationFromFile(cfgPath string, _ LoadOrDefaultConfigurationOptions) (*kubeadmapi.UpgradeConfiguration, error) {
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/build.gradle.kts

        testFixturesImplementation(project(":persistent-cache"))
        testFixturesImplementation(libs.slf4jApi)
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder test (JavaLanguagePluginTest) loads services from a Gradle distribution.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

    import org.gradle.internal.DisplayName;
    
    import java.util.Set;
    
    /**
     * Provides dependency locking support for dependency resolution.
     */
    public interface DependencyLockingProvider {
    
        /**
         * Loads the lock state for the lock with the given ID.
         *
         * @param lockId the ID of the lock to load
         * @param lockOwner the display name of the owner of the lock
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/vendor.go

    	modload.ForceUseModules = true
    	modload.RootMode = modload.NeedRoot
    
    	loadOpts := modload.PackageOpts{
    		Tags:                     imports.AnyTags(),
    		VendorModulesInGOROOTSrc: true,
    		ResolveMissingImports:    true,
    		UseVendorAll:             true,
    		AllowErrors:              vendorE,
    		SilenceMissingStdImports: true,
    	}
    	_, pkgs := modload.LoadPackages(ctx, loadOpts, "all")
    
    	var vdir string
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_arm64.s

    	MOVB	R0, ret+8(FP)
    	RET
    
    // uint64 ·Load64(uint64 volatile* addr)
    TEXT ·Load64(SB),NOSPLIT,$0-16
    	MOVD	ptr+0(FP), R0
    	LDAR	(R0), R0
    	MOVD	R0, ret+8(FP)
    	RET
    
    // void *·Loadp(void *volatile *addr)
    TEXT ·Loadp(SB),NOSPLIT,$0-16
    	MOVD	ptr+0(FP), R0
    	LDAR	(R0), R0
    	MOVD	R0, ret+8(FP)
    	RET
    
    // uint32 ·LoadAcq(uint32 volatile* addr)
    TEXT ·LoadAcq(SB),NOSPLIT,$0-12
    	B	·Load(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_ppc64x.s

    TEXT ·Load64(SB),NOSPLIT|NOFRAME,$-8-16
    	MOVD	ptr+0(FP), R3
    	SYNC
    	MOVD	0(R3), R3
    	CMP	R3, R3, CR7
    	BC	4, 30, 1(PC) // bne- cr7,0x4
    	ISYNC
    	MOVD	R3, ret+8(FP)
    	RET
    
    // void *·Loadp(void *volatile *ptr)
    TEXT ·Loadp(SB),NOSPLIT|NOFRAME,$-8-16
    	MOVD	ptr+0(FP), R3
    	SYNC
    	MOVD	0(R3), R3
    	CMP	R3, R3, CR7
    	BC	4, 30, 1(PC) // bne- cr7,0x4
    	ISYNC
    	MOVD	R3, ret+8(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/copyelim.go

    		change := false
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				// This is an early place in SSA where all values are examined.
    				// Rewrite all 0-sized Go values to remove accessors, dereferences, loads, etc.
    				if t := v.Type; (t.IsStruct() || t.IsArray()) && t.Size() == 0 {
    					if t.IsStruct() {
    						v.reset(OpStructMake0)
    					} else {
    						v.reset(OpArrayMake0)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_retention.txt

    go list -mod=mod all
    cmp go.mod go.mod.tidy
    
    # "// indirect" comments should be added if appropriate.
    # TODO(#42504): add case for 'go list -mod=mod -tags=any all' when -tags=any
    # is supported. Only a command that loads "all" without build constraints
    # (except "ignore") has enough information to add "// indirect" comments.
    # 'go mod tidy' and 'go mod vendor' are the only commands that do that,
    # but 'go mod vendor' cannot write go.mod.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

        private List<ClassLoader> exportLoaders; // if not null, is not empty
        private ClassPath local = ClassPath.EMPTY;
        private List<ClassLoader> ownLoaders;
    
        // If these are not null, we are pessimistic (loaders asked for before locking)
        private MultiParentClassLoader exportingClassLoader;
        private MultiParentClassLoader localClassLoader;
    
        // What is actually exposed
        private ClassLoader effectiveLocalClassLoader;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/configdump.go

    	Policies      json.RawMessage          `json:"policies"`
    	Certificates  json.RawMessage          `json:"certificates"`
    	WorkloadState map[string]WorkloadState `json:"workloadstate"`
    }
    
    // Prime loads the config dump into the writer ready for printing
    func (c *ConfigWriter) Prime(b []byte) error {
    	zDump := &ZtunnelDump{}
    	rawDump := &rawDump{}
    	// TODO(fisherxu): migrate this to jsonpb when issue fixed in golang
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top