Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 713 for setIws (0.09 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/daemonsetstatus.go

    // apply.
    func DaemonSetStatus() *DaemonSetStatusApplyConfiguration {
    	return &DaemonSetStatusApplyConfiguration{}
    }
    
    // WithCurrentNumberScheduled sets the CurrentNumberScheduled field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/reinvocationcontext.go

    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    type webhookReinvokeContext struct {
    	// lastWebhookOutput holds the result of the last webhook admission plugin call
    	lastWebhookOutput runtime.Object
    	// previouslyInvokedReinvocableWebhooks holds the set of webhooks that have been invoked and
    	// should be reinvoked if a later mutation occurs
    	previouslyInvokedReinvocableWebhooks sets.String
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 21:31:09 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecSpec.java

     */
    public interface ExecSpec extends BaseExecSpec {
        /**
         * Sets the full command line, including the executable to be executed plus its arguments.
         *
         * @param args the command plus the args to be executed
         * @since 4.0
         */
        void setCommandLine(List<String> args);
    
        /**
         * Sets the full command line, including the executable to be executed plus its arguments.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

        /**
         * Gets the global settings file.
         *
         * @return The global settings file or {@code null} if none.
         */
        File getGlobalSettingsFile();
    
        /**
         * Sets the global settings file. A non-existent settings file is equivalent to empty settings. If both user
         * settings and global settings are given, the user settings take precedence.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/Block.java

        }
    
        public BlockPointer getNextPos() {
            return BlockPointer.pos(getPos().getPos() + getSize());
        }
    
        public abstract boolean hasPos();
    
        public abstract void setPos(BlockPointer pos);
    
        public abstract void setSize(int size);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. buildscripts/verify-build.sh

    	export MINIO_ENDPOINTS="${WORK_DIR}/erasure-disk-sets{1...32}"
    	"${MINIO[@]}" server >"$WORK_DIR/erasure-minio-sets.log" 2>&1 &
    
    	"${WORK_DIR}/mc" ready verify
    }
    
    function start_minio_pool_erasure_sets() {
    	export MINIO_ROOT_USER=$ACCESS_KEY
    	export MINIO_ROOT_PASSWORD=$SECRET_KEY
    	export MINIO_ENDPOINTS="http://127.0.0.1:9000${WORK_DIR}/pool-disk-sets{1...4} http://127.0.0.1:9001${WORK_DIR}/pool-disk-sets{5...8}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    */
    
    package options
    
    import (
    	"fmt"
    	"io"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    )
    
    func TestEnabledPluginNames(t *testing.T) {
    	scenarios := []struct {
    		expectedPluginNames       []string
    		setDefaultOffPlugins      sets.Set[string]
    		setRecommendedPluginOrder []string
    		setEnablePlugins          []string
    		setDisablePlugins         []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/kube/namespace/filter.go

    			if f.namespaceCreatedLocked(ns.ObjectMeta) {
    				f.notifyHandlersLocked(sets.New(ns.Name), nil)
    			}
    		},
    		UpdateFunc: func(old, new *corev1.Namespace) {
    			f.lock.Lock()
    			defer f.lock.Unlock()
    			membershipChanged, namespaceAdded := f.namespaceUpdatedLocked(old.ObjectMeta, new.ObjectMeta)
    			if membershipChanged {
    				added := sets.New(new.Name)
    				var removed sets.String
    				if !namespaceAdded {
    					removed = added
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TimeoutSeconds field is set to the value of the last call.
    func (b *ProbeApplyConfiguration) WithTimeoutSeconds(value int32) *ProbeApplyConfiguration {
    	b.TimeoutSeconds = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/proxy_view.go

    		return ProxyViewAll
    	}
    
    	// Restrict the view to the requested networks.
    	return &proxyViewImpl{
    		visible: sets.New(node.Metadata.RequestedNetworkView...).Insert(identifier.Undefined),
    		getValue: func(ep *IstioEndpoint) string {
    			return ep.Network.String()
    		},
    	}
    }
    
    type proxyViewImpl struct {
    	visible  sets.String
    	getValue func(ep *IstioEndpoint) string
    }
    
    func (v *proxyViewImpl) IsVisible(ep *IstioEndpoint) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 15 16:11:16 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top