Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for projected (0.17 sec)

  1. manifests/charts/ztunnel/templates/daemonset.yaml

            {{- end }}
          priorityClassName: system-node-critical
          terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
          volumes:
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  path: istio-token
                  expirationSeconds: 43200
                  audience: istio-ca
          - name: istiod-ca-cert
            configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

        }
    
        @Provides
        protected DaemonLogFile createDaemonLogFile(DaemonContext daemonContext, DaemonDir daemonDir) {
            final Long pid = daemonContext.getPid();
            String fileName = "daemon-" + (pid == null ? UUID.randomUUID() : pid) + ".out.log";
            return new DaemonLogFile(new File(daemonDir.getVersionedDir(), fileName));
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

            subprojectDir.file("src/test/resources").assertIsDir()
        }
    
        protected void gradlePropertiesGenerated() {
            targetDir.file("gradle.properties").assertIsFile()
        }
    
        protected ScriptDslFixture dslFixtureFor(BuildInitDsl dsl) {
            ScriptDslFixture.of(dsl, targetDir, subprojectName())
        }
    
        protected ScriptDslFixture rootProjectDslFixtureFor(BuildInitDsl dsl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

    
    @Contextual
    sealed class ConfigurationCacheException protected constructor(
        message: () -> String,
        causes: Iterable<Throwable>
    ) : DefaultMultiCauseException(message, causes), ConfigurationCacheThrowable
    
    
    open class ConfigurationCacheProblemsException : ConfigurationCacheException {
    
        protected
        object Documentation {
    
            val maxProblems: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

     * <pre>
     * htmlDependencyReport {
     *     projects = project.allprojects
     * }
     * </pre>
     * <p>
     * The report is generated in the <code>build/reports/project/dependencies</code> directory by default.
     * This can also be changed by setting the <code>reports.html.destination</code> property:
     * <pre>
     * htmlDependencyReport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/transfer/AbstractMavenTransferListener.java

     */
    public abstract class AbstractMavenTransferListener extends AbstractTransferListener {
        public static final String STYLE = ".transfer:-faint";
    
        protected final MessageBuilderFactory messageBuilderFactory;
        protected final PrintStream out;
    
        protected AbstractMavenTransferListener(MessageBuilderFactory messageBuilderFactory, PrintStream out) {
            this.messageBuilderFactory = messageBuilderFactory;
            this.out = out;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/AbstractFunctionalTypeTest.kt

        protected
        fun <T : Any> assertDeferredEvaluationOf(deferred: T, force: T.() -> Any?) {
            Runtime.value = "before"
            val value = configurationCacheRoundtripOf(deferred)
    
            Runtime.value = "after"
            assertThat(
                force(value),
                equalTo("after")
            )
        }
    
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

      public void testAwait_CountDownLatch() {
        final CountDownLatch latch = new CountDownLatch(1);
        Object x =
            new Object() {
              @Override
              protected void finalize() {
                latch.countDown();
              }
            };
        x = null; // Hint to the JIT that x is unreachable
        GcFinalization.await(latch);
        assertEquals(0, latch.getCount());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestGlobalScopeServices.java

    public class TestGlobalScopeServices extends GlobalScopeServices {
        public TestGlobalScopeServices() {
            super(false, AgentStatus.disabled());
        }
    
        @Provides
        @Override
        protected CacheFactory createCacheFactory(FileLockManager fileLockManager, ExecutorFactory executorFactory, BuildOperationRunner buildOperationRunner) {
            return new TestInMemoryCacheFactory();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/AbstractConfigurationCacheIntegrationTest.groovy

            fails(ENABLE_CLI_OPT, LOG_REPORT_LINK_AS_WARNING, *tasks)
        }
    
        protected void assertTestsExecuted(String testClass, String... testNames) {
            new DefaultTestExecutionResult(testDirectory)
                .testClass(testClass)
                .assertTestsExecuted(testNames)
        }
    
        protected static String removeVfsLogOutput(String normalizedOutput) {
            normalizedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top