Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,414 for optionB (0.13 sec)

  1. pkg/wasm/options.go

    	DefaultHTTPRequestMaxRetries = 5
    )
    
    // Options contains configurations to create a Cache instance.
    type Options struct {
    	PurgeInterval         time.Duration
    	ModuleExpiry          time.Duration
    	InsecureRegistries    sets.String
    	HTTPRequestTimeout    time.Duration
    	HTTPRequestMaxRetries int
    }
    
    func defaultOptions() Options {
    	return Options{
    		PurgeInterval:         DefaultPurgeInterval,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            options[2].name == "my-option2"
            options[2].description == "Opposite option of --no-my-option2."
            options[3].name == "no-my-option2"
            options[3].description == "Opposite option Property<Boolean>"
            options[4].name == "rerun"
            options[4].description == "Causes the task to be re-run even if up-to-date."
        }
    
        def "fail when multiple methods define same option"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. guava/src/com/google/common/base/Optional.java

     */
    @DoNotMock("Use Optional.of(value) or Optional.absent()")
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    public abstract class Optional<T> implements Serializable {
      /**
       * Returns an {@code Optional} instance with no contained reference.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is equivalent to Java 8's
       * {@code Optional.empty}.
       */
      public static <T> Optional<T> absent() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.6K 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