Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,749 for outdated (0.15 sec)

  1. hack/testdata/CRD/multi-crd-list-updated-field.yaml

    Nikhita Raghunath <******@****.***> 1506872372 +0530
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 349 bytes
    - Viewed (0)
  2. pkg/kubelet/lifecycle/interfaces.go

    limitations under the License.
    */
    
    package lifecycle
    
    import "k8s.io/api/core/v1"
    
    // PodAdmitAttributes is the context for a pod admission decision.
    // The member fields of this struct should never be mutated.
    type PodAdmitAttributes struct {
    	// the pod to evaluate for admission
    	Pod *v1.Pod
    	// all pods bound to the kubelet excluding the pod being evaluated
    	OtherPods []*v1.Pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.22.md

      - Services that have been set to IPFamilyPolicy = PreferDualstack will be upgraded when the service object is updated. e.g., when a user change a label.
      
      This behavior will change to:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	// For example, do not warn about spec fields in a status update.
    	WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string
    	// Canonicalize allows an object to be mutated into a canonical form. This
    	// ensures that code that operates on these objects can rely on the common
    	// form for things like comparison.  Canonicalize is invoked after
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    // no data should be written to the directory, and so the path values of
    // LocalDir, UploadDir, etc. must not matter.
    //
    // Default is a global for convenience and testing, but should not be mutated
    // outside of tests.
    //
    // TODO(rfindley): it would be nice to completely eliminate this global state,
    // or at least push it in the golang.org/x/telemetry package
    var Default Dir
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/test/resources/plugin/repo2/fess-ds-atlassian/12.2.0-SNAPSHOT/maven-metadata.xml

          <snapshotVersion>
            <extension>jar</extension>
            <value>12.2.0-20180814.210714-10</value>
            <updated>20180814210714</updated>
          </snapshotVersion>
          <snapshotVersion>
            <extension>pom</extension>
            <value>12.2.0-20180814.210714-10</value>
            <updated>20180814210714</updated>
          </snapshotVersion>
          <snapshotVersion>
            <classifier>sources</classifier>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 15 02:16:52 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Base64Util.java

            }
            return outData;
        }
    
        private static void encode(final byte[] inData, final int inIndex, final char[] outData, final int outIndex) {
    
            final int i = ((inData[inIndex] & 0xff) << 16) + ((inData[inIndex + 1] & 0xff) << 8) + (inData[inIndex + 2] & 0xff);
            outData[outIndex] = ENCODE_TABLE[i >> 18];
            outData[outIndex + 1] = ENCODE_TABLE[i >> 12 & 0x3f];
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            bindings.getRulesWithSubject(nodeAtState("a", ModelNode.State.Mutated)) as List == [rule1]
            bindings.getRulesWithSubject(nodeAtState("a.1", ModelNode.State.Mutated)) as List == [rule3]
            bindings.getRulesWithSubject(nodeAtState("a.2", ModelNode.State.Mutated)) as List == [rule2]
            bindings.getRulesWithSubject(nodeAtState("b", ModelNode.State.Mutated)).empty
        }
    
        def "binds multiple by-path rules to subject"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  9. pkg/controller/history/controller_history.go

    		if clone.Revision == newRevision {
    			return nil
    		}
    		clone.Revision = newRevision
    		updated, updateErr := rh.client.AppsV1().ControllerRevisions(clone.Namespace).Update(context.TODO(), clone, metav1.UpdateOptions{})
    		if updateErr == nil {
    			return nil
    		}
    		if updated != nil {
    			clone = updated
    		}
    		if updated, err := rh.lister.ControllerRevisions(clone.Namespace).Get(clone.Name); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/caching/configuration/internal/DefaultBuildCacheConfigurationTest.groovy

            1 * instantiator.newInstance(CustomBuildCache) >> original
            0 * _
    
            BuildCache updated = null
            when:
            buildCacheConfiguration.remote(CustomBuildCache) { config ->
                updated = config
            }
            then:
            updated == original
            0 * _
        }
    
        def 'can reconfigure remote as super-type'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 12 13:13:02 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top