Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 473 for recreate (0.29 sec)

  1. pkg/registry/core/service/portallocator/controller/repair.go

    				c.recorder.Eventf(svc, nil, corev1.EventTypeWarning, "PortAlreadyAllocated", "PortAllocation", "Port %d was assigned to multiple services; please recreate service", port)
    				runtime.HandleError(fmt.Errorf("the node port %d for service %s/%s was assigned to multiple services; please recreate", port, svc.Name, svc.Namespace))
    			case err.(*portallocator.ErrNotInRange):
    				// port is out of range, reallocate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Recreate a getsystemcfg syscall handler instead of
    // using the one provided by x/sys/unix to avoid having
    // the dependency between them. (See golang.org/issue/32102)
    // Moreover, this file will be used during the building of
    // gccgo's libgo and thus must not used a CGo method.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 726 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderSpec.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classloader;
    
    import java.io.Serializable;
    
    /**
     * An immutable description of a ClassLoader hierarchy that can be used to recreate the hierarchy in a different process.
     *
     * Subclasses should implement equals() and hashCode(), so that the spec can be used as a hashmap key.
     */
    public abstract class ClassLoaderSpec implements Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 991 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_sum.txt

    go mod tidy
    grep 'rsc.io/quote v1.0.0' go.sum
    ! grep 'rsc.io/quote v1.5.2' go.sum
    ! grep rsc.io/sampler go.sum
    
    # go.sum with no entries is OK to keep
    # (better for version control not to delete and recreate.)
    cp x.go.noimports x.go
    go mod tidy
    exists go.sum
    ! grep . go.sum
    
    -- go.mod --
    module x
    -- x.go --
    package x
    import _ "rsc.io/quote"
    -- x.go.noimports --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 742 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/model/NamedObjectInstantiatorTest.groovy

            n1.toString() == "a"
            n2.toString() == "b"
    
            n1.is(factory.named(Named, "a"))
            n2.is(factory.named(Named, "b"))
        }
    
        def "can unpack and recreate Named instance"() {
            expect:
            def n1 = factory.named(Named, "a")
            n1 instanceof Managed
            n1.publicType() == Named
            n1.isImmutable()
            def state = n1.unpackState()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCache.java

     */
    @ThreadSafe
    public interface CrossBuildInMemoryCache<K, V> extends Cache<K, V> {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
         * <p>Implementations must prevent more than one thread calculating the same key at the same time.
         */
        @Override
        V get(K key, Function<? super K, ? extends V> factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskContainerInternal.java

         */
        boolean addAllInternal(Collection<? extends Task> task);
    
        /**
         * Creates an instance of the given task type without invoking its constructors. This is used to recreate a task instance from the configuration cache.
         *
         * TODO:configuration-cache - review this
         */
        <T extends Task> T createWithoutConstructor(String name, Class<T> type, long uniqueId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 08 09:35:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ValueSnapshot.java

    import org.gradle.internal.hash.Hashable;
    
    import javax.annotation.Nullable;
    
    /**
     * An immutable snapshot of the state of some Java object or object graph.
     *
     * <p>Implementations are not required to be able to recreate the object, and should retain as little state as possible.
     * In particular, implementations should not hold on to user ClassLoaders.</p>
     */
    public interface ValueSnapshot extends Hashable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    		},
    		{
    			name: "create IPAddresses dual stack",
    			svcs: []*v1.Service{newService("test-svc", []string{"10.0.1.1", "2001:db8::10"})},
    			cidrs: []*networkingv1alpha1.ServiceCIDR{
    				newServiceCIDR("kubernetes", serviceCIDRv4, serviceCIDRv6),
    			},
    			expectedIPs: []string{"10.0.1.1", "2001:db8::10"},
    			actions:     [][]string{{"create", "ipaddresses"}, {"create", "ipaddresses"}},
    			events: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/Cache.java

    import java.util.function.Function;
    import java.util.function.Supplier;
    
    public interface Cache<K, V>  {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
         * <p>Implementations may prevent more than one thread calculating the same key at the same time or not.
         */
        V get(K key, Function<? super K, ? extends V> factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top