Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for External (0.14 sec)

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

    		gs := s.(*k8s.GatewayStatus)
    		addressesToReport := external
    		if len(addressesToReport) == 0 {
    			wantAddressType := classInfo.addressType
    			if override, ok := obj.Annotations[addressTypeOverride]; ok {
    				wantAddressType = k8s.AddressType(override)
    			}
    			// There are no external addresses, so report the internal ones
    			// TODO: should we always report both?
    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. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Executes an external command. The closure configures a {@link org.gradle.process.ExecSpec}.
         *
         * @param closure The closure for configuring the execution.
         * @return the result of the execution
         */
        ExecResult exec(@DelegatesTo(ExecSpec.class) Closure closure);
    
        /**
         * Executes an external command.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    			if listenerOpts.service.Attributes.ServiceRegistry == provider.External && listenerOpts.proxy.IsIPv6() &&
    				svcListenAddress == constants.UnspecifiedIP {
    				svcListenAddress = constants.UnspecifiedIPv6
    			}
    
    			// For dualstack proxies we need to add the unspecifed ipv6 address to the list of extra listen addresses
    			if listenerOpts.service.Attributes.ServiceRegistry == provider.External && listenerOpts.proxy.IsDualStack() &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:untracked_external_tool]]
    === Integrate an external tool which does its own up-to-date checking
    
    Sometimes you want to integrate an external tool like Git or Npm, both of which do their own up-to-date checking.
    In that case it doesn't make much sense for Gradle to also do up-to-date checks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		if job != nil {
    			// Skip cleanup of finalizers for pods owned by a job managed by an external controller
    			if controllerName := managedByExternalController(job); controllerName != nil {
    				logger.V(2).Info("Skip cleanup of the job finalizer for a pod owned by a job that is managed by an external controller", "key", key, "podUID", sharedPod.UID, "jobUID", job.UID, "controllerName", controllerName)
    				return nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    limitations under the License.
    */
    
    // Package v1 contains API types that are common to all versions.
    //
    // The package contains two categories of types:
    //   - external (serialized) types that lack their own version (e.g TypeMeta)
    //   - internal (never-serialized) types that are needed by several different
    //     api groups, and so live here, to avoid duplication and/or import loops
    //     (e.g. LabelSelector).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	//
    	// Note that we lightly parse internal/goversion/goversion.go to
    	// obtain the base version. We can't just import the package,
    	// because cmd/dist is built with a bootstrap GOROOT which could
    	// be an entirely different version of Go. We assume
    	// that the file contains "const Version = <Integer>".
    	goversionSource := readfile(pathf("%s/src/internal/goversion/goversion.go", goroot))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

      ],    
      "description": "MinIO Grafana Dashboard - https://min.io/",
      "editable": true,
      "fiscalYearStartMonth": 0,
      "gnetId": 15306,
      "graphTooltip": 0,
      "id": 283,
      "links": [
        {
          "icon": "external link",
          "includeVars": true,
          "keepTime": true,
          "tags": [
            "minio"
          ],
          "type": "dashboards"
        }
      ],
      "liveNow": false,
      "panels": [
        {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    	ticketKeyRotation = 24 * time.Hour
    )
    
    // ticketKey is the internal representation of a session ticket key.
    type ticketKey struct {
    	aesKey  [16]byte
    	hmacKey [16]byte
    	// created is the time at which this ticket key was created. See Config.ticketKeys.
    	created time.Time
    }
    
    // ticketKeyFromBytes converts from the external representation of a session
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    import (
    	"context"
    	"errors"
    	"fmt"
    	"maps"
    	"os"
    	"runtime"
    	"runtime/debug"
    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/mvs"
    	"cmd/go/internal/par"
    
    	"golang.org/x/mod/module"
    )
    
    // A Requirements represents a logically-immutable set of root module requirements.
    type Requirements struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top