Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,527 for modes (0.07 sec)

  1. src/cmd/internal/obj/plist.go

    			if s.ABI() != ABI0 {
    				continue
    			}
    			// runtime.addmoduledata is a host ABI function, so it doesn't
    			// need FUNCDATA anyway. Moreover, cmd/link has special logic
    			// for linking it in eccentric build modes, which breaks if it
    			// has FUNCDATA references (e.g., cmd/cgo/internal/testplugin).
    			//
    			// TODO(cherryyz): Fix cmd/link's handling of plugins (see
    			// discussion on CL 523355).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/start.go

    		telemetry.Default = telemetry.NewDir(config.TelemetryDir)
    	}
    	result := new(StartResult)
    
    	mode, _ := telemetry.Default.Mode()
    	if mode == "off" {
    		// Telemetry is turned off. Crash reporting doesn't work without telemetry
    		// at least set to "local". The upload process runs in both "on" and "local" modes.
    		// In local mode the upload process builds local reports but does not do the upload.
    		return result
    	}
    
    	counter.Open()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    	ErrReasonReadWriteOncePodConflict = "node has pod using PersistentVolumeClaim with the same name and ReadWriteOncePod access mode"
    )
    
    // preFilterState computed at PreFilter and used at Filter.
    type preFilterState struct {
    	// Names of the pod's volumes using the ReadWriteOncePod access mode.
    	readWriteOncePodPVCs sets.Set[string]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication.go

    	"k8s.io/kubernetes/pkg/features"
    	kubeauthenticator "k8s.io/kubernetes/pkg/kubeapiserver/authenticator"
    	authzmodes "k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	"k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/bootstrap"
    	"k8s.io/utils/pointer"
    )
    
    const (
    	oidcIssuerURLFlag      = "oidc-issuer-url"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

    }
    """
    
            when:
            fails 'dependencies'
    
            then:
            failure.assertHasCause "Both dependency locking and fail on $desc versions are enabled. You must choose between the two modes."
    
            where:
            flag                              | desc
            'failOnDynamicVersions'           | 'dynamic'
            'failOnChangingVersions'          | 'changing'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    type AuthorizationConfiguration struct {
    	metav1.TypeMeta
    
    	// Authorizers is an ordered list of authorizers to
    	// authorize requests against.
    	// This is similar to the --authorization-modes kube-apiserver flag
    	// Must be at least one.
    	Authorizers []AuthorizerConfiguration `json:"authorizers"`
    }
    
    const (
    	TypeWebhook                                          AuthorizerType = "Webhook"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    ====
    
    [[sec:controlling_dependency_caching_command_line]]
    == Controlling dependency caching from the command line
    
    [[sec:offline-mode]]
    === Avoiding network access with offline mode
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. src/image/jpeg/reader.go

    	blackStride int
    
    	ri    int // Restart Interval.
    	nComp int
    
    	// As per section 4.5, there are four modes of operation (selected by the
    	// SOF? markers): sequential DCT, progressive DCT, lossless and
    	// hierarchical, although this implementation does not support the latter
    	// two non-DCT modes. Sequential DCT is further split into baseline and
    	// extended, as per section 4.11.
    	baseline    bool
    	progressive bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. cmd/s3-zip-handlers.go

    			oi.UserDefined[archiveTypeMetadataKey] = at
    			oi.UserDefined[archiveInfoMetadataKey] = zipInfoStr
    			return dsc, nil
    		},
    	}
    
    	// For all other modes use in-place update to update metadata on a specific version.
    	if _, err = objectAPI.PutObjectMetadata(ctx, bucket, object, popts); err != nil {
    		return nil, err
    	}
    
    	return zipInfo, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    // web socket message with a single byte indicating the channel number (0-N). 255 is reserved for
    // future use. The channel types for each channel are passed as an array, supporting the different
    // duplex modes. Read and Write refer to whether the channel can be used as a Reader or Writer.
    //
    // The protocols parameter maps subprotocol names to ChannelProtocols. The empty string subprotocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top