Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,300 for setS (0.36 sec)

  1. 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)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * if {@code fork} is set to {@code true}.
         */
        @Nested
        public GroovyForkOptions getForkOptions() {
            return forkOptions;
        }
    
        /**
         * Sets options for running the Groovy compiler in a separate process. These options only take effect
         * if {@code fork} is set to {@code true}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

        }
    
        /**
         * The built-in rule sets to be used. See the <a href="https://docs.pmd-code.org/pmd-doc-6.55.0/pmd_rules_java.html">official list</a> of built-in rule sets.
         *
         * <pre>
         *     ruleSets = ["category/java/errorprone.xml", "category/java/bestpractices.xml"]
         * </pre>
         */
        public void setRuleSets(List<String> ruleSets) {
            this.ruleSets.set(ruleSets);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. docs/distributed/DESIGN.md

    - *If total drives has many common divisors the algorithm chooses the minimum amounts of erasure sets possible for a erasure set size of any N*.  In the example with 1024 drives - 4, 8, 16 are GCD factors. With 16 drives we get a total of 64 possible sets, with 8 drives we get a total of 128 possible sets, with 4 drives we get a total of 256 possible sets. So algorithm automatically chooses 64 sets, which is *16* 64 = 1024* drives in total.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pkg/volume/util/nested_volumes_test.go

    	"path/filepath"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    type testCases struct {
    	name     string
    	err      bool
    	expected sets.Set[string]
    	volname  string
    	pod      v1.Pod
    }
    
    func TestGetNestedMountpoints(t *testing.T) {
    	var (
    		testNamespace = "test_namespace"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/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.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/cronjobspec.go

    }
    
    // WithSuspend sets the Suspend 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 Suspend field is set to the value of the last call.
    func (b *CronJobSpecApplyConfiguration) WithSuspend(value bool) *CronJobSpecApplyConfiguration {
    	b.Suspend = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 16:40:46 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    	return &EphemeralContainerCommonApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/workload_test.go

    		for _, r := range resp.Resources {
    			have.Insert(r.Name)
    		}
    		for _, r := range resp.RemovedResources {
    			haveRemoved.Insert(r)
    		}
    		assert.Equal(t, sets.SortedList(have), sets.SortedList(wantAdded))
    		assert.Equal(t, sets.SortedList(haveRemoved), sets.SortedList(wantRemoved))
    	}
    }
    
    func TestWorkloadReconnect(t *testing.T) {
    	test.SetForTest(t, &features.EnableAmbient, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    // WithTCPSocket sets the TCPSocket 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 TCPSocket field is set to the value of the last call.
    func (b *ProbeApplyConfiguration) WithTCPSocket(value *TCPSocketActionApplyConfiguration) *ProbeApplyConfiguration {
    	b.TCPSocket = 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)
Back to top