Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 856 for Initialize (1.52 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

            try {
                connector.forProjectDirectory(buildSpec.getWorkingDirectory());
                connector.useInstallation(scenarioDefinition.getBuildConfiguration().getGradleHome());
                // First initialize the Gradle instance using the default user home dir
                // This sets some static state that uses files from the user home dir, such as DLLs
                connector.useGradleUserHomeDir(context.getGradleUserHomeDir());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

            this.recursionInterceptor = recursionInterceptor;
        }
    
        protected abstract Interpolator createInterpolator();
    
        public void initialize() throws InitializationException {
            interpolator = createInterpolator();
            recursionInterceptor = new PrefixAwareRecursionInterceptor(PROJECT_PREFIXES);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	return b.clearExtra() | counterStateBits(x)<<stateExtraShift
    }
    
    // New returns a counter with the given name.
    // New can be called in global initializers and will be compiled down to
    // linker-initialized data. That is, calling New to initialize a global
    // has no cost at program startup.
    func New(name string) *Counter {
    	// Note: not calling defaultFile.New in order to keep this
    	// function something the compiler can inline and convert
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

        @CheckForNull ValueEntry<K, V> nextInValueBucket;
        /*
         * The *InValueSet and *InMultimap fields below are null after construction, but we almost
         * always call succeedsIn*() to initialize them immediately thereafter.
         *
         * The exception is the *InValueSet fields of multimapHeaderEntry, which are never set. (That
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/LinkedHashMultimap.java

        @CheckForNull ValueEntry<K, V> nextInValueBucket;
        /*
         * The *InValueSet and *InMultimap fields below are null after construction, but we almost
         * always call succeedsIn*() to initialize them immediately thereafter.
         *
         * The exception is the *InValueSet fields of multimapHeaderEntry, which are never set. (That
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    	}
    
    	if err := s.initControllers(args); err != nil {
    		return nil, err
    	}
    
    	InitGenerators(s.XDSServer, configGen, args.Namespace, s.clusterID, s.internalDebugMux)
    
    	// Initialize workloadTrustBundle after CA has been initialized
    	if err := s.initWorkloadTrustBundle(args); err != nil {
    		return nil, err
    	}
    
    	// Parse and validate Istiod Address.
    	istiodHost, _, err := e.GetDiscoveryAddress()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminUser_AdminUserEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerForms(data);
            });
        }
    
        @Execute
        @Secured({ ROLE })
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/Config.java

     * is global therefore property names should be unique. Before use,
     * the <code>load</code> method should be called with the name of a
     * <code>Properties</code> file (or <code>null</code> indicating no
     * file) to initialize the <code>Config</code>. The <code>System</code>
     * properties will then populate the <code>Config</code> as well potentially
     * overwriting properties from the file. Thus properties provided on the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                assertThat(
                    "it preserves identity",
                    first,
                    sameInstance(second)
                )
                assertThat(
                    "it allows writeReplace to initialize the object",
                    first.value,
                    equalTo("42")
                )
            }
        }
    
        @Test
        fun `can handle circular writeReplace`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

                unlocksRequestedFrom.remove(lockId);
                unlocksConfirmedFrom.remove(lockId);
                assertNotStopped();
                if (communicator == null) {
                    throw new IllegalStateException("Must initialize the handler by reserving the port first.");
                }
                if (fileLockRequestListener == null) {
                    fileLockRequestListener = executorFactory.create("File lock request listener");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top