Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 338 for Lists (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    			// This is a relatively expensive operation.
    			cel.EagerlyValidateDeclarations(true),
    			cel.DefaultUTCTimeZone(true),
    
    			library.URLs(),
    			library.Regex(),
    			library.Lists(),
    
    			// cel-go v0.17.7 change the cost of has() from 0 to 1, but also provided the CostEstimatorOptions option to preserve the old behavior, so we enabled it at the same time we bumped our cel version to v0.17.7.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ----
    
    * Each line still represents a single dependency in the `group:artifact:version` notation
    * It then lists all configurations that contain the given dependency
    * Module and configurations are ordered alphabetically, to ease diffs
    * The last line of the file lists all empty configurations, that is configurations known to have no dependencies
    
    which matches the following dependency declaration:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/base.go

    	Long string
    
    	// Flag is a set of flags specific to this command.
    	Flag flag.FlagSet
    
    	// CustomFlags indicates that the command will do its own
    	// flag parsing.
    	CustomFlags bool
    
    	// Commands lists the available commands and help topics.
    	// The order here is the order in which they are printed by 'go help'.
    	// Note that subcommands are in general best avoided.
    	Commands []*Command
    }
    
    var Go = &Command{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

            }
        }
    
        /**
         * An immutable data class that holds information about a single variant which was a candidate for matching during resolution.
         *
         * This includes classifying its attributes into lists of compatible, incompatible, and absent attributes.  Each candidate
         * is assessed within the context of a resolution, but must not reference the assessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top