Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 353 for Lists (0.04 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    func GenericAssignableTo(ctxt *types.Context, V, T types.Type) bool {
    	V = aliases.Unalias(V)
    	T = aliases.Unalias(T)
    
    	// If V and T are not both named, or do not have matching non-empty type
    	// parameter lists, fall back on types.AssignableTo.
    
    	VN, Vnamed := V.(*types.Named)
    	TN, Tnamed := T.(*types.Named)
    	if !Vnamed || !Tnamed {
    		return types.AssignableTo(V, T)
    	}
    
    	vtparams := VN.TypeParams()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

     */
    package org.gradle.integtests.fixtures;
    
    import com.google.common.base.Supplier;
    import com.google.common.base.Suppliers;
    import com.google.common.collect.Iterables;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Sets;
    import net.rubygrapefruit.platform.WindowsRegistry;
    import org.gradle.api.JavaVersion;
    import org.gradle.api.internal.file.IdentityFileResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/node/v1/types.go

    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    type Scheduling struct {
    	// nodeSelector lists labels that must be present on nodes that support this
    	// RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
    	// node matched by this selector. The RuntimeClass nodeSelector is merged
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/config/config.go

    //
    // Merging is done by replacement. Any fields present in the overlay will replace those existing fields, while
    // untouched fields will remain untouched. This means lists will be replaced, not appended to, for example.
    func getMeshConfig(fileOverride, annotationOverride, proxyConfigEnv string) (*meshconfig.MeshConfig, error) {
    	mc := mesh.DefaultMeshConfig()
    	if fileOverride != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. hack/apidiff.sh

                ;;
            *)
                usage
                ;;
        esac
    done
    shift $((OPTIND - 1))
    
    # Check specific directory or everything.
    targets=("$@")
    if [ ${#targets[@]} -eq 0 ]; then
        # This lists all entries in the go.work file as absolute directory paths.
        kube::util::read-array targets < <(go list -f '{{.Dir}}' -m)
    fi
    
    # Sanitize paths:
    # - We need relative paths because we will invoke apidiff in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// client is using SNI (see RFC 4366, Section 3.1).
    	ServerName string
    
    	// SupportedCurves lists the elliptic curves supported by the client.
    	// SupportedCurves is set only if the Supported Elliptic Curves
    	// Extension is being used (see RFC 4492, Section 5.1.1).
    	SupportedCurves []CurveID
    
    	// SupportedPoints lists the point formats supported by the client.
    	// SupportedPoints is set only if the Supported Point Formats Extension
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/aggregate/controller.go

    	for i, r := range c.registries {
    		if r.Cluster().Equals(clusterID) && r.Provider() == provider {
    			return i, true
    		}
    	}
    	return 0, false
    }
    
    // Services lists services from all platforms
    func (c *Controller) Services() []*model.Service {
    	// smap is a map of hostname (string) to service index, used to identify services that
    	// are installed in multiple clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.LinkedHashMultimap;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Multimap;
    import com.google.common.collect.Sets;
    import org.apache.commons.lang.StringUtils;
    import org.gradle.api.Action;
    import org.gradle.api.artifacts.ModuleIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // are referenced by the Pod and that use "WaitForFirstConsumer"
      // allocation is to be attempted.
      // +optional
      optional string selectedNode = 1;
    
      // PotentialNodes lists nodes where the Pod might be able to run.
      //
      // The size of this field is limited to 128. This is large enough for
      // many clusters. Larger clusters may need more attempts to find a node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.file;
    
    import com.google.common.collect.Lists;
    import groovy.lang.Closure;
    import groovy.lang.DelegatesTo;
    import org.apache.commons.io.FileUtils;
    import org.apache.tools.ant.Project;
    import org.apache.tools.ant.taskdefs.Zip;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top