Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,300 for setS (0.08 sec)

  1. 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)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/deploymentspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Paused field is set to the value of the last call.
    func (b *DeploymentSpecApplyConfiguration) WithPaused(value bool) *DeploymentSpecApplyConfiguration {
    	b.Paused = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.9K 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. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the RestartCount field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithRestartCount(value int32) *ContainerStatusApplyConfiguration {
    	b.RestartCount = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodesysteminfo.go

    }
    
    // WithBootID sets the BootID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the BootID field is set to the value of the last call.
    func (b *NodeSystemInfoApplyConfiguration) WithBootID(value string) *NodeSystemInfoApplyConfiguration {
    	b.BootID = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/scaleiopersistentvolumesource.go

    	return &ScaleIOPersistentVolumeSourceApplyConfiguration{}
    }
    
    // WithGateway sets the Gateway field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Gateway field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/testing/fake_test.go

    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kubernetes/pkg/proxy/ipvs"
    )
    
    // (I am unsure if this test has any value since it only tests the fake implementation)
    func TestSetGetLocalAddresses(t *testing.T) {
    	fake := NewFakeNetlinkHandle(false)
    	_ = ipvs.NetLinkHandle(fake) // Ensure that the interface is honored
    	fake.SetLocalAddresses("eth0", "1.2.3.4")
    	var expected, addr sets.Set[string]
    	expected = sets.New("1.2.3.4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. 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)
  10. pkg/proxy/conntrack/fake.go

    */
    
    package conntrack
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // FakeInterface implements Interface by just recording entries that have been cleared.
    type FakeInterface struct {
    	ClearedIPs      sets.Set[string]
    	ClearedPorts    sets.Set[int]
    	ClearedNATs     map[string]string // origin -> dest
    	ClearedPortNATs map[int]string    // port -> dest
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 04:15:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top