Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,002 for opticks (0.2 sec)

  1. cmd/kube-apiserver/app/options/options.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package options contains flags and options for initializing an apiserver
    package options
    
    import (
    	"net"
    	"strings"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	cliflag "k8s.io/component-base/cli/flag"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/options.go

    	Revision           string
    	MeshConfigFile     string
    	NetworksConfigFile string
    	RegistryOptions    RegistryOptions
    	CtrlZOptions       *ctrlz.Options
    	KeepaliveOptions   *keepalive.Options
    	ShutdownDuration   time.Duration
    	JwtRule            string
    }
    
    // DiscoveryServerOptions contains options for create a new discovery server instance.
    type DiscoveryServerOptions struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/options.go

    	"github.com/google/pprof/internal/symbolizer"
    	"github.com/google/pprof/internal/transport"
    )
    
    // setDefaults returns a new plugin.Options with zero fields sets to
    // sensible defaults.
    func setDefaults(o *plugin.Options) *plugin.Options {
    	d := &plugin.Options{}
    	if o != nil {
    		*d = *o
    	}
    	if d.Writer == nil {
    		d.Writer = oswriter{}
    	}
    	if d.Flagset == nil {
    		d.Flagset = &GoFlags{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 07 12:27:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    	"io"
    	"net"
    	"net/url"
    
    	"github.com/spf13/pflag"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/runtime/cputicks.go

    //go:build !arm && !arm64 && !mips64 && !mips64le && !mips && !mipsle && !wasm
    
    package runtime
    
    // careful: cputicks is not guaranteed to be monotonic! In particular, we have
    // noticed drift between cpus on certain os/arch combinations. See issue 8976.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 12:47:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options.go

    limitations under the License.
    */
    
    // Package options provides the flags used for the controller manager.
    package options
    
    import (
    	"fmt"
    	"net"
    
    	v1 "k8s.io/api/core/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/options.go

    	"k8s.io/apiserver/pkg/storage/storagebackend"
    	flowcontrolrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    	"k8s.io/client-go/tools/cache"
    )
    
    // RESTOptions is set of resource-specific configuration options to generic registries.
    type RESTOptions struct {
    	StorageConfig *storagebackend.ConfigForResource
    	Decorator     StorageDecorator
    
    	EnableGarbageCollection   bool
    	DeleteCollectionWorkers   int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 01 20:54:26 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/options/options.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"net"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	netutils "k8s.io/utils/net"
    )
    
    // DefaultServiceNodePortRange is the default port range for NodePort services.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. istioctl/pkg/multicluster/options.go

    import (
    	"k8s.io/client-go/tools/clientcmd"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    const (
    	clusterNameAnnotationKey = "networking.istio.io/cluster"
    )
    
    // KubeOptions contains kubernetes options common to all commands.
    type KubeOptions struct {
    	Kubeconfig string
    	Context    string
    	Namespace  string
    }
    
    // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 23:59:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/options/options.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"time"
    
    	"github.com/spf13/pflag"
    )
    
    // VolumeConfigFlags is used to bind CLI flags to variables.  This top-level struct contains *all* enumerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
Back to top