Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 144 for Whatever (0.1 sec)

  1. .teamcity/src/test/kotlin/VersionedSettingsBranchTest.kt

        }
    
        @ParameterizedTest
        @ValueSource(
            strings = [
                "experimental",
                "placeholder-1",
                "whatever",
            ]
        )
        fun branchesWithVcsTriggerDisabled(branchName: String) {
            val vsb = VersionedSettingsBranch(branchName)
            assertFalse(vsb.enableVcsTriggers)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 07:59:58 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/controller/deployment/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/config/v1alpha1/defaults.go

    // default values, but they may be subject to change between API versions. This
    // function is intentionally not registered in the scheme as a "normal"
    // `SetDefaults_Foo` function to allow consumers of this type to set whatever
    // defaults for their embedded configs. Forcing consumers to use these defaults
    // would be problematic as defaulting in the scheme is done as part of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 04:13:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. pkg/controller/podgc/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/ephemeral/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/language/groovy/fixtures/TestGroovyComponent.groovy

        }
    
        @Override
        void writeAdditionalSources(TestFile sourceDir) {
            sourceDir.file("java/Extra.groovy") << """
    interface Extra {
        String whatever()
    }
    """
        }
    
        List<JvmSourceFile> expectedOutputs = [
                sources[0].classFile,
                sources[1].classFile,
                resources[0],
                resources[1]
        ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. pkg/controller/certificates/signer/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 12:14:55 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/concurrent/ParallelismConfiguration.java

        /**
         * Returns the maximum number of concurrent workers used for underlying build operations.
         *
         * Workers can be threads, processes or whatever Gradle considers a "worker". Some examples:
         *
         * <ul>
         *     <li>A thread running a task</li>
         *     <li>A test process</li>
         *     <li>A language compiler in a forked process</li>
         * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

         * that the output is generated in a stable order rather than in an order based on the order that implementations
         * are discovered.
         */
        String getId();
    
        /**
         * Notifies the build user of whatever problems have been collected. May report problems to the console, or generate a report
         * or fail with one or more exceptions, or all of the above.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependentNodesSet.java

        }
    
        DependentNodesSet addMustPredecessor(Node fromNode);
    
        /**
         * Visits all nodes in this set.
         * Should visit the nodes in a deterministic order, but the order can be whatever best makes sense for the node implementation.
         */
        void visitAllNodes(Consumer<Node> visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top