Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for indices (0.27 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    // Today, this is just Gateway and Mesh.
    type parentInfo struct {
    	// InternalName refers to the internal name we can reference it by. For example, "mesh" or "my-ns/my-gateway"
    	InternalName string
    	// AllowedKinds indicates which kinds can be admitted by this parent
    	AllowedKinds []k8s.RouteGroupKind
    	// Hostnames is the hostnames that must be match to reference to the parent. For gateway this is listener hostname
    	// Format is ns/hostname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    	}
    	if f.Toolchain != nil {
    		reqs = append(reqs, module.Version{Path: "toolchain", Version: f.Toolchain.Name})
    	}
    	return reqs
    }
    
    // isNoSuchModuleVersion reports whether err indicates that the requested module
    // does not exist at the requested version, either because the module does not
    // exist at all or because it does not include that specific version.
    func isNoSuchModuleVersion(err error) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    # puts them in a subdirectory of $env:K8S_DIR.
    #
    # Required ${kube_env} keys:
    #   NODE_BINARY_TAR_URL
    function DownloadAndInstall-KubernetesBinaries {
      # Assume that presence of kubelet.exe indicates that the kubernetes binaries
      # were already previously downloaded to this node.
      if (-not (ShouldWrite-File ${env:NODE_DIR}\kubelet.exe)) {
        return
      }
    
      $tmp_dir = 'C:\k8s_tmp'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages.go

    	s := cryptobyte.String(data)
    	return s.Skip(1) &&
    		readUint24LengthPrefixed(&s, &m.verifyData) &&
    		s.Empty()
    }
    
    type certificateRequestMsg struct {
    	// hasSignatureAlgorithm indicates whether this message includes a list of
    	// supported signature algorithms. This change was introduced with TLS 1.2.
    	hasSignatureAlgorithm bool
    
    	certificateTypes             []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            given:
            def configuration = conf()
    
            when:
            configuration.getBuildDependencies()
    
            then:
            0 * _._
        }
    
        def "state indicates failure resolving graph"() {
            given:
            def configuration = conf()
            def failure = new TypedResolveException("dependencies", "configuration ':conf'", [new RuntimeException()])
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    			Package:    p,
    			IgnoreFail: true, // run (prepare output) even if build failed
    			TryCache:   rta.c.tryCache,
    		}
    		if writeCoverMetaAct != nil {
    			// If writeCoverMetaAct != nil, this indicates that our
    			// "go test -coverpkg" run actions will need to read the
    			// meta-files summary file written by writeCoverMetaAct,
    			// so add a dependence edge from writeCoverMetaAct to the
    			// run action.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
       * <p>This is mainly just to avoid the intermediate ArrayDeque in ConsumingQueueIterator.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
       * <p>This is mainly just to avoid the intermediate ArrayDeque in ConsumingQueueIterator.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    				c.watchersBuffer = append(c.watchersBuffer, watcher)
    			}
    		}
    	} else {
    		// supported equal to false generally means that trigger function
    		// is not defined (or not aware of any indexes). In this case,
    		// watchers filters should generally also don't generate any
    		// trigger values, but can cause problems in case of some
    		// misconfiguration. Thus we paranoidly leave this branch.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    	"errors"
    	"fmt"
    	"internal/goversion"
    	"internal/testenv"
    	"reflect"
    	"regexp"
    	"sort"
    	"strings"
    	"sync"
    	"testing"
    
    	. "cmd/compile/internal/types2"
    )
    
    // nopos indicates an unknown position
    var nopos syntax.Pos
    
    func mustParse(src string) *syntax.File {
    	f, err := syntax.Parse(syntax.NewFileBase(pkgName(src)), strings.NewReader(src), nil, nil, 0)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top