Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,749 for outdated (0.14 sec)

  1. pkg/scheduler/internal/queue/events.go

    	// AssignedPodUpdate is the event when a pod is updated that causes pods with matching affinity
    	// terms to be more schedulable.
    	AssignedPodUpdate = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Update, Label: "AssignedPodUpdate"}
    	// UnscheduledPodUpdate is the event when an unscheduled pod is updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/test/resources/repo/org/apache/maven/its/dep-mng5324/07.20.3-SNAPSHOT/maven-metadata.xml

            <extension>jar</extension>
            <value>07.20.3-20120809.112124-88</value>
            <updated>20120809112124</updated>
          </snapshotVersion>
          <snapshotVersion>
            <classifier>classifierB</classifier>
            <extension>jar</extension>
            <value>07.20.3-20120809.112920-97</value>
            <updated>20120809112920</updated>
          </snapshotVersion>
        </snapshotVersions>
      </versioning>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 01 06:59:53 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryRequest.java

         * configured update policy.
         *
         * @return {@code true} if remote repositories should be re-checked for updated artifacts/metadata, {@code false}
         *         otherwise.
         */
        boolean isForceUpdate();
    
        /**
         * Enables/disabled forced checks for updated artifacts/metadata on remote repositories.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpecContainer.java

         *
         * @param path the project path
         *
         * @return a mutable dependency, added to this container
         */
        ProjectDependencySpecBuilder project(String path);
    
        /**
         * Defines a new dependency, based on a library name. The returned dependency can be mutated.
         *
         * @param name of the library
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    	cm2 := makeConfigMap("not-watched", "1")
    	steps := []struct {
    		added        *v1.ConfigMap
    		updated      *v1.ConfigMap
    		deleted      *v1.ConfigMap
    		expectCalled bool
    		expectCM     *v1.ConfigMap
    	}{
    		{added: cm2},
    		{added: cm, expectCalled: true, expectCM: cm},
    		{updated: cm},
    		{updated: cm1, expectCalled: true, expectCM: cm1},
    		{deleted: cm1, expectCalled: true},
    		{deleted: cm2},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. .github/PULL_REQUEST_TEMPLATE.md

    ## Checklist:
    - [ ] Fixes a regression (If yes, please add `commit-id` or `PR #` here)
    - [ ] Unit tests added/updated
    - [ ] Internal documentation updated
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 14 17:29:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/tokens_controller_test.go

    			ExpectedActions:     []core.Action{},
    		},
    		"updated serviceaccount with no secrets": {
    			ClientObjects: []runtime.Object{serviceAccount(emptySecretReferences())},
    
    			UpdatedServiceAccount: serviceAccount(emptySecretReferences()),
    			ExpectedActions:       []core.Action{},
    		},
    		"updated serviceaccount with missing secrets": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/monitor/monitor.go

    		root:            root,
    		store:           delegateStore,
    		getSnapshotFunc: getSnapshotFunc,
    	}
    	return monitor
    }
    
    const watchDebounceDelay = 50 * time.Millisecond
    
    // Trigger notifications when a file is mutated
    func fileTrigger(path string, ch chan struct{}, stop <-chan struct{}) error {
    	if path == "" {
    		return nil
    	}
    	fs, err := fsnotify.NewWatcher()
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelReferenceTest.groovy

            expect:
            def reference = ModelReference.of("some.path", String).atState(ModelNode.State.Mutated)
            reference.scope == null
            reference.path == ModelPath.path("some.path")
            reference.type == ModelType.of(String)
            !reference.untyped
            reference.state == ModelNode.State.Mutated
    
            def original = ModelReference.of(String)
            original.atState(original.state).is(original)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencyResolveDetailsSpec.groovy

            !details.delegate.updated
            details.delegate.ruleDescriptors == []
    
            when:
            details.useVersion("1.0") //the same version
    
            then:
            details.requested == newVersionSelector("org", "foo", "1.0")
            details.target == newVersionSelector("org", "foo", "1.0")
            details.delegate.updated
            details.delegate.ruleDescriptors == [SELECTED_BY_RULE]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top