Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 456 for setString (0.29 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices.go

    		for k, v := range resp.Envs {
    			if e, ok := envsMap[k]; ok {
    				klog.V(4).InfoS("Skip existing env", "envKey", k, "envValue", v)
    				if e != v {
    					klog.ErrorS(nil, "Environment variable has conflicting setting", "envKey", k, "expected", v, "got", e)
    				}
    				continue
    			}
    			klog.V(4).InfoS("Add env", "envKey", k, "envValue", v)
    			envsMap[k] = v
    			opts.Envs = append(opts.Envs, kubecontainer.EnvVar{Name: k, Value: v})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. common/config/.golangci.yml

        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
      misspell:
        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
        # Setting locale to US will correct the British spelling of 'colour' to 'color'.
        locale: US
        ignore-words:
          - cancelled
      lll:
        # max line length, lines longer will be reported. Default is 120.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/registry/core/replicationcontroller/storage/storage_test.go

    	ctx := genericapirequest.WithNamespace(genericapirequest.NewContext(), namespace)
    	rcStart, err := createController(storage.Controller, *validController, t)
    	if err != nil {
    		t.Fatalf("error setting new replication controller %v: %v", *validController, err)
    	}
    
    	rc := rcStart.DeepCopy()
    	rc.Status.Replicas++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ====
    include::sample[dir="snippets/performance/parallelTestExecution/kotlin",files="build.gradle.kts[tags=fork-every]"]
    include::sample[dir="snippets/performance/parallelTestExecution/groovy",files="build.gradle[tags=fork-every]"]
    ====
    
    WARNING: Forking a VM is an expensive operation. Setting too small a value here slows down testing.
    
    ==== Disable reports
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    ====
    
    Crucially, we're using the _method_ `srcDir()` here to append a directory path, whereas setting the `srcDirs` property replaces any existing values. This is a common convention in Gradle: setting a property replaces values, while the corresponding method appends values.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/generated.proto

      // This is a mutually exclusive setting with "Resource".
      // +optional
      optional IngressServiceBackend service = 4;
    
      // resource is an ObjectRef to another Kubernetes resource in the namespace
      // of the Ingress object. If resource is specified, a service.Name and
      // service.Port must not be specified.
      // This is a mutually exclusive setting with "Service".
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                            runtimeOnly("mysql:mysql-connector-java:8.0.26")
                        }
                    }
                    val integTest by registering(JvmTestSuite::class) {
                        // intentionally setting lower versions of the same dependencies on the `test` suite to show that no conflict resolution should be taking place
                        dependencies {
                            implementation(project())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/loadbalancer/loadbalancer.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.
    
    // packages used for load balancer setting
    package loadbalancer
    
    import (
    	"math"
    	"sort"
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

          }
    
        @Deprecated(
          "since OkHttp 3.13 all TLS-connections are expected to support TLS extensions.\n" +
            "In a future release setting this to true will be unnecessary and setting it to false\n" +
            "will have no effect.",
        )
        fun supportsTlsExtensions(supportsTlsExtensions: Boolean) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/select.go

    			// If we are racing with another go command and do bin/go first,
    			// then the check of bin/go above might succeed, the other go command
    			// would skip its own mode-setting, and then the go command might
    			// try to run a tool before we get to setting the bits on pkg/tool.
    			// Setting pkg/tool before bin/go avoids that ordering problem.
    			// The only other tool the go command invokes is gofmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top