Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 609 for getg (0.03 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/BuildCacheConfigurationInternal.java

         */
        void setLocal(DirectoryBuildCache local);
    
        /**
         * Replaces remote build cache.
         */
        void setRemote(@Nullable BuildCache remote);
    
        /**
         * Gets build cache service registrations
         */
        Set<BuildCacheServiceRegistration> getRegistrations();
    
        /**
         * Replaces build cache service registrations
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/PropertyAccess.java

         * Returns true when this object is known to have the given property.
         *
         * <p>Note that not every property is known. Some properties require an attempt to get or set their value before they are discovered.</p>
         */
        boolean hasProperty(String name);
    
        /**
         * Gets the value of the given property, if present.
         */
        DynamicInvokeResult tryGetProperty(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/timeoututils.go

    	}
    }
    
    var (
    	activeTimeouts *Timeouts = nil
    	timeoutMutex             = &sync.RWMutex{}
    )
    
    func init() {
    	SetDefaultTimeouts(&activeTimeouts)
    }
    
    // GetActiveTimeouts gets the active timeouts structure.
    func GetActiveTimeouts() *Timeouts {
    	timeoutMutex.RLock()
    	defer timeoutMutex.RUnlock()
    	return activeTimeouts
    }
    
    // SetActiveTimeouts sets the active timeouts structure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * @return This request, never {@code null}.
         */
        MavenExecutionRequest setSystemProperties(Properties systemProperties);
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    // Need to handle these routes in a special manner:
    // - GET /default/services/kubernetes -- must return a valid Service
    // - GET /clusterrolebindings/system:nodes -- can safely return a NotFound error
    // - GET /nodes/<node-name> -- must return a valid Node
    // - ...all other, unknown GETs/LISTs will be logged
    type InitDryRunGetter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. pkg/apis/policy/v1/conversion.go

    	case apiequality.Semantic.DeepEqual(in.Spec.Selector, policy.NonV1beta1MatchAllSelector):
    		// no-op, preserve
    	default:
    		// otherwise, make sure the label intended to be used in a match-all or match-none selector
    		// never gets combined with user-specified fields
    		policy.StripPDBV1beta1Label(out.Spec.Selector)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/common_test.go

    		},
    		{
    			name: "InitConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: InitConfiguration
    			`, gv)),
    			expectedKinds: []string{
    				constants.InitConfigurationKind,
    				constants.ClusterConfigurationKind,
    			},
    			expectErr: false,
    		},
    		{
    			name: "ClusterConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/LifecyclePhaseNotFoundException.java

         */
        public LifecyclePhaseNotFoundException(String message, String lifecyclePhase) {
            super(message);
            this.lifecyclePhase = (lifecyclePhase != null) ? lifecyclePhase : "";
        }
    
        /**
         * Gets the lifecycle phase that was not found.
         *
         * @return The lifecycle phase that was not found, never {@code null}.
         */
        public String getLifecyclePhase() {
            return lifecyclePhase;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/generators/go122-syscall-steal-proc-ambiguous.go

    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	t.DisableTimestamps()
    
    	g := t.Generation(1)
    
    	// One goroutine does a syscall without blocking, then another one where
    	// it's P gets stolen.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/BuildOutputCleanupRegistry.java

        /**
         * Finalizes the registered build outputs.
         *
         * After this call, it is impossible to register more outputs.
         */
        void resolveOutputs();
    
        /**
         * Gets the set of registered outputs as file collections.
         */
        Set<FileCollection> getRegisteredOutputs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top