Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 235 for createId (0.33 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		require.NoError(t, err, "create resource class")
    	}
    	for _, scheduling := range schedulings {
    		_, err := tc.client.ResourceV1alpha2().PodSchedulingContexts(scheduling.Namespace).Create(tc.ctx, scheduling, metav1.CreateOptions{})
    		require.NoError(t, err, "create pod scheduling")
    	}
    
    	tc.informerFactory.Start(tc.ctx.Done())
    	t.Cleanup(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	}
    }
    
    // TestControllerV2JobAlreadyExistsButNotInActiveStatus validates that an already created job that was not added to the status
    // of a CronJob initially will be added back on the next sync. Previously, if we failed to update the status after creating a job,
    // cronjob controller would retry continuously because it would attempt to create a job that already exists.
    func TestControllerV2JobAlreadyExistsButNotInActiveStatus(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Returns a freshly created segment, typed at the {@code S} type. */
        S newSegment(MapMakerInternalMap<K, V, E, S> map, int initialCapacity);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment}.
         */
        E newEntry(S segment, K key, int hash, @CheckForNull E next);
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                root(":", ":test:") {
                    module('org:test:1.0')
                }
            }
    
            and:
            outputDoesNotContain("Cannot set attributes for dependency \"org:test:1.0\": it was probably created by a plugin using internal APIs")
        }
    
        def "can declare attributes on constraints"() {
            given:
            repository {
                'org:test:1.0'()
            }
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
       */
      public static class Builder<K, V> extends ImmutableMap.Builder<K, V> {
        private final Comparator<? super K> comparator;
    
        /**
         * Creates a new builder. The returned builder is equivalent to the builder generated by {@link
         * ImmutableSortedMap#orderedBy}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	case "watch":
    		forceWatch := true
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "create":
    		// we want to track recently created CRDs so that in HA environments we don't have server A allow a create and server B
    		// not have observed the established, so a followup get,update,delete results in a 404. We've observed about 800ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The following configurations were never meant to be consumed:
    
     - The `antlr` configuration created by the `AntlrPlugin`
     - The `zinc` configuration created by the `ScalaBasePlugin`
     - The `providedCompile` and `providedRuntime` configurations created by the `WarPlugin`
    
    These configurations were deprecated for consumption and are now no longer consumable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    			// The store accrues active pods. It's also used by the ReplicaSet to determine how many
    			// replicas to create.
    			activePods := int32(len(informers.Core().V1().Pods().Informer().GetIndexer().List()))
    			if replicas != 0 {
    				// This is the number of pods currently "in flight". They were created by the
    				// ReplicaSet controller above, which then puts the ReplicaSet to sleep till
    				// all of them have been observed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     * services from this registry or its parents.</li>
     *
     * </ul>
     *
     * <p>Service instances are created on demand. {@link #getFactory(Class)} looks for a service instance which implements {@code Factory<T>} where {@code T} is the expected type.</p>
     *
     * <p>Service instances and factories are closed when the registry that created them is closed using {@link #close()}. If a service instance or factory implements {@link java.io.Closeable} or {@link
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //
      // The server guarantees that the objects returned when using continue will be identical to issuing
      // a single list call without a limit - that is, no objects created, modified, or deleted after the
      // first request is issued will be included in any subsequent continued requests. This is sometimes
      // referred to as a consistent snapshot, and ensures that a client that is using limit to receive
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top