Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for generations (0.17 sec)

  1. platforms/software/antlr/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for generating parsers from Antlr grammars."
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
            "Finally", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":core"))
        api(project(":core-api"))
        api(project(":files"))
        api(project(":model-core"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/gateway_test.go

    		if cond.Status != metav1.ConditionTrue {
    			return fmt.Errorf("failed to find programmed condition: %+v", cond)
    		}
    		if cond.ObservedGeneration != gw.Generation {
    			return fmt.Errorf("stale GWC generation: %+v", cond)
    		}
    		return nil
    	}
    	retry.UntilSuccessOrFail(t, check)
    
    	// Make sure we did not overwrite our deployment or service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.ResourceVersion = "1"
    				return template
    			}(),
    		},
    		"generation": {
    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.Generation = 100
    				return template
    			}(),
    		},
    		"creation-timestamp": {
    			template: func() *resource.ResourceClaimTemplate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			t.Errorf("Expect the object to have 0 DeletionGracePeriodSecond, but got %#v", podWithFinalizer.ObjectMeta)
    		}
    		if podWithFinalizer.Generation <= initialGeneration {
    			t.Errorf("Deletion didn't increase Generation.")
    		}
    
    		updatedPodWithFinalizer := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.ResourceVersion = "1"
    				return class
    			}(),
    		},
    		"generation": {
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.Generation = 100
    				return class
    			}(),
    		},
    		"creation-timestamp": {
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    			Name:      implicitWaypointPolicyName(&waypoint),
    			Namespace: waypoint.Namespace,
    			// note: we don't actually use label selection; the names have an internally well-known format
    			// workload generation will append a reference to this
    			Scope:  security.Scope_WORKLOAD_SELECTOR,
    			Action: security.Action_ALLOW,
    			Groups: []*security.Group{{
    				Rules: []*security.Rules{
    					{
    						Matches: []*security.Match{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins that add support for generating IDE project files used for importing Gradle projects into IDEs"
    
    errorprone {
        disabledChecks.addAll(
            "MixedMutabilityReturnType", // 2 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. tests/integration/ambient/waypoint_test.go

    				if cond.Status != metav1.ConditionTrue {
    					return fmt.Errorf("failed to find accepted condition: %+v", cond)
    				}
    				if cond.ObservedGeneration != gwc.Generation {
    					return fmt.Errorf("stale GWC generation: %+v", cond)
    				}
    				return nil
    			}
    			retry.UntilSuccessOrFail(t, check)
    
    			// Wipe out the status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/psiDeclarationProvider/FirStandaloneNormalAnalysisSourceModulePsiDeclarationProviderTestGenerated.java

    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.analysis.api.GenerateAnalysisApiTestsKt}. DO NOT MODIFY MANUALLY */
    @SuppressWarnings("all")
    @TestMetadata("analysis/analysis-api/testData/standalone/source")
    @TestDataPath("$PROJECT_ROOT")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 10:23:31 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/typeInfoProvider/Fe10IdeNormalAnalysisSourceModuleDoubleColonReceiverTypeTestGenerated.java

    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.analysis.api.GenerateAnalysisApiTestsKt}. DO NOT MODIFY MANUALLY */
    @SuppressWarnings("all")
    @TestMetadata("analysis/analysis-api/testData/components/typeInfoProvider/doubleColonReceiverType")
    @TestDataPath("$PROJECT_ROOT")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top