Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 362 for getg (0.16 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsPublisherExtractor.java

    import org.codelibs.fess.crawler.entity.ExtractData;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.codelibs.fess.crawler.exception.ExtractException;
    
    /**
     * Gets a text from . file.
     *
     * @author shinsuke
     *
     */
    public class MsPublisherExtractor extends AbstractExtractor {
    
        /*
         * (non-Javadoc)
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val INT: KaType
            get() = int
    
        public abstract val long: KaType
    
        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
        @Deprecated("Use 'short' instead.", replaceWith = ReplaceWith("short"))
        public val SHORT: KaType
            get() = short
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh.go

    	}
    	return &out, nil
    }
    
    // ReadMeshNetworks gets mesh networks configuration from a config file
    func ReadMeshNetworks(filename string) (*meshconfig.MeshNetworks, error) {
    	yaml, err := os.ReadFile(filename)
    	if err != nil {
    		return nil, multierror.Prefix(err, "cannot read networks config file")
    	}
    	return ParseMeshNetworks(string(yaml))
    }
    
    // ReadMeshConfig gets mesh configuration from a config file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProjectProfile.java

            this.projectPath = projectPath;
            this.configurationOperation = new ContinuousOperation(projectPath);
        }
    
        /**
         * Gets the task profiling container for the specified task.
         */
        public TaskExecution getTaskProfile(String taskPath) {
            TaskExecution result = tasks.get(taskPath);
            if (result == null) {
                result = new TaskExecution(taskPath);
                tasks.put(taskPath, result);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            Language.GROOVY | JavaLanguageVersion.of(11) | true
            Language.CPP    | null                       | false
            Language.SWIFT  | null                       | false
        }
    
        def "gets java-version from property"() {
            given:
            def userQuestions = Mock(UserQuestions)
            def buildInitializer = Mock(BuildInitializer)
            buildInitializer.supportsJavaTargets() >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top