Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,422 for setIws (0.18 sec)

  1. guava/src/com/google/common/collect/ForwardingNavigableSet.java

     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingNavigableSet}.
     *
     * <p>Each of the {@code standard} methods uses the set's comparator (or the natural ordering of the
     * elements, if there is no comparator) to test element equality. As a result, if the comparator is
     * not consistent with equals, some of the standard implementations may violate the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. cmd/endpoint.go

    			return err
    		}
    	}
    	return nil
    }
    
    // SetPoolIndex sets a specific pool number to this node
    func (endpoint *Endpoint) SetPoolIndex(i int) {
    	endpoint.PoolIdx = i
    }
    
    // SetSetIndex sets a specific set number to this node
    func (endpoint *Endpoint) SetSetIndex(i int) {
    	endpoint.SetIdx = i
    }
    
    // SetDiskIndex sets a specific disk number to this node
    func (endpoint *Endpoint) SetDiskIndex(i int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        public void setJdk(Jdk jdk) {
            this.jdk = jdk;
        }
    
        /**
         * The vcs used by the project.
         */
        public String getVcs() {
            return vcs;
        }
    
        public void setVcs(String vcs) {
            this.vcs = vcs;
        }
    
        /**
         * The project-level libraries of the IDEA project.
         */
        public Set<ProjectLibrary> getProjectLibraries() {
            return projectLibraries;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingNavigableSet}.
     *
     * <p>Each of the {@code standard} methods uses the set's comparator (or the natural ordering of the
     * elements, if there is no comparator) to test element equality. As a result, if the comparator is
     * not consistent with equals, some of the standard implementations may violate the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

         * <p>
         * See the examples in the docs for {@link IdeaProject}.
         */
        public String getVcs() {
            return vcs;
        }
    
        public void setVcs(String vcs) {
            this.vcs = vcs;
        }
    
        /**
         * The wildcard resource patterns.
         * <p>
         * See the examples in the docs for {@link IdeaProject}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    }
    
    // APIEndpoint struct contains elements of API server instance deployed on a node.
    type APIEndpoint struct {
    	// AdvertiseAddress sets the IP address for the API server to advertise.
    	// +optional
    	AdvertiseAddress string `json:"advertiseAddress,omitempty"`
    
    	// BindPort sets the secure port for the API Server to bind to.
    	// Defaults to 6443.
    	// +optional
    	BindPort int32 `json:"bindPort,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/initconfiguration.go

    	}
    
    	// kubeadm allows users to specify address=Loopback as a selector for global unicast IP address that can be found on loopback interface.
    	// e.g. This is required for network setups where default routes are present, but network interfaces use only link-local addresses (e.g. as described in RFC5549).
    	if addressIP.IsLoopback() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils.go

    }
    
    // getPodName gets the name of set's child Pod with an ordinal index of ordinal
    func getPodName(set *apps.StatefulSet, ordinal int) string {
    	return fmt.Sprintf("%s-%d", set.Name, ordinal)
    }
    
    // getPersistentVolumeClaimName gets the name of PersistentVolumeClaim for a Pod with an ordinal index of ordinal. claim
    // must be a PersistentVolumeClaim from set's VolumeClaims template.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/set_generic_test.go

    		}
    	}
    }
    
    func TestIntersection(t *testing.T) {
    	tests := []struct {
    		s1       sets.Set[string]
    		s2       sets.Set[string]
    		expected sets.Set[string]
    	}{
    		{
    			sets.New("1", "2", "3", "4"),
    			sets.New("3", "4", "5", "6"),
    			sets.New("3", "4"),
    		},
    		{
    			sets.New("1", "2", "3", "4"),
    			sets.New("1", "2", "3", "4"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 09:03:44 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RangeSet.java

    @DoNotMock("Use ImmutableRangeSet or TreeRangeSet")
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface RangeSet<C extends Comparable> {
    
      // Query methods
    
      /** Determines whether any of this range set's member ranges contains {@code value}. */
      boolean contains(C value);
    
      /**
       * Returns the unique range from this range set that {@linkplain Range#contains contains} {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top