Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,135 for tcRange (0.12 sec)

  1. pkg/controller/deployment/rollback.go

    		// A Deployment has old RS1 with annotation {change-cause:create}, and new RS2 {change-cause:edit}.
    		// Note that both annotations are copied from Deployment, and the Deployment should be annotated {change-cause:edit} as well.
    		// Now, rollback Deployment to RS1, we should update Deployment's pod-template and also copy annotation from RS1.
    		// Deployment is now annotated {change-cause:create}, and we have new RS1 {change-cause:create}, old RS2 {change-cause:edit}.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. releasenotes/notes/merge-svc.yaml

    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a security fix.
    # - feature -- Used to specify a new feature that has been added.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/test/groovy/com/example/LibraryPluginTest.groovy

        }
    
        def "fails when README does not have API section"() {
            given:
            new File(testProjectDir, 'README.md') << """
    ## Changelog
    - change 1
    - change 2
            """
    
            when:
            def result = runTaskWithFailure('check')
    
            then:
            result.task(":readmeCheck").outcome == TaskOutcome.FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	}
    
    	// Root cert rotation does not change root private key. Root private key should
    	// remain the same.
    	isMatched = bytes.Equal(itemA.caSecret.Data[CAPrivateKeyFile], itemB.caSecret.Data[CAPrivateKeyFile])
    	if !isMatched {
    		t.Errorf("Root private key should not change. Want %v got %v", shouldMatch, isMatched)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. pkg/apis/scheduling/validation/validation_test.go

    	}
    	successCases := map[string]scheduling.PriorityClass{
    		"no change": {
    			ObjectMeta:       metav1.ObjectMeta{Name: "tier1", Namespace: "", ResourceVersion: "2"},
    			Value:            100,
    			PreemptionPolicy: &preemptLowerPriority,
    			Description:      "Used for the highest priority pods.",
    		},
    		"change description": {
    			ObjectMeta:       metav1.ObjectMeta{Name: "tier1", Namespace: "", ResourceVersion: "2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/test/kotlin/com/example/LibraryPluginTest.kt

        }
    
        @Test
        fun `fails when README does not have API section`() {
            testProjectDir.newFile("README.md").writeText("""
                ## Changelog
                - change 1
                - change 2
            """.trimIndent())
    
            val result = runTaskWithFailure ("check")
    
            assertEquals(TaskOutcome.FAILED, result.task(":readmeCheck")?.outcome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/LimitingChangeVisitor.java

            this.maxReportedChanges = maxReportedChanges;
            this.delegate = delegate;
        }
    
        @Override
        public boolean visitChange(Change change) {
            boolean delegateResult = delegate.visitChange(change);
            visited++;
            return delegateResult && visited < maxReportedChanges;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/UnexportMainSymbol.java

            for (FileChange change : inputChanges.getFileChanges(getObjects())) {
                if (change.getChangeType() == ChangeType.REMOVED) {
                    File relocatedFileLocation = relocatedObject(change.getFile());
                    relocatedFileLocation.delete();
                } else {
                    if (change.getFile().isFile()) {
                        unexportMainSymbol(change.getFile());
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // change sets that provoke the failure.
    //
    // The target must cooperate with bisect by accepting a change pattern
    // and then enabling and reporting the changes that match that pattern.
    // The change pattern is passed to the target by substituting it anywhere
    // the string PATTERN appears in the environment values or the command
    // arguments. For each change that matches the pattern, the target must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top