Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 291 for mypair (0.45 sec)

  1. manifests/charts/istio-cni/values.yaml

          dnsCapture: false
          # UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
          ipv6: false
    
    
        repair:
          enabled: true
          hub: ""
          tag: ""
    
          # Repair controller has 3 modes. Pick which one meets your use cases. Note only one may be used.
          # This defines the action the controller will take when a pod is detected as broken.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/registry/core/rest/storage_core.go

    	return "start-service-ip-repair-controllers", func(context genericapiserver.PostStartHookContext) error {
    		// We start both repairClusterIPs and repairNodePorts to ensure repair
    		// loops of ClusterIPs and NodePorts.
    		// We run both repair loops using RunUntil public interface.
    		// However, we want to fail liveness/readiness until the first
    		// successful repair loop, so we basically pass appropriate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. pkg/registry/authorization/util/helpers_test.go

    					User:                  "bob",
    					Groups:                []string{user.AllAuthenticated},
    					NonResourceAttributes: &authorizationapi.NonResourceAttributes{Verb: "get", Path: "/mypath"},
    					Extra:                 map[string]authorizationapi.ExtraValue{"scopes": {"scope-a", "scope-b"}},
    				},
    			},
    			want: authorizer.AttributesRecord{
    				User: &user.DefaultInfo{
    					Name:   "bob",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/jacoco-application/groovy/build.gradle

    // tag::application-configuration[]
    plugins {
        id 'application'
        id 'jacoco'
    }
    
    application {
        mainClass = 'org.gradle.MyMain'
    }
    
    jacoco {
        applyTo run
    }
    
    tasks.register('applicationCodeCoverageReport', JacocoReport) {
        executionData run
        sourceSets sourceSets.main
    }
    // end::application-configuration[]
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 359 bytes
    - Viewed (0)
  5. ci/official/utilities/rename_and_verify_wheels.sh

      mkdir -p $TFCI_OUTPUT_DIR/extra_wheels
      ls -t *.whl | tail -n +2 | xargs mv -t $TFCI_OUTPUT_DIR/extra_wheels
    fi
    
    # Repair wheels with auditwheel and delete the old one.
    if [[ "$TFCI_WHL_AUDIT_ENABLE" == "1" ]]; then
      python3 -m auditwheel repair --plat "$TFCI_WHL_AUDIT_PLAT" --wheel-dir . *.whl
      # if the wheel is already named correctly, auditwheel won't rename it. so we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/jacoco-application/kotlin/build.gradle.kts

    // tag::application-configuration[]
    plugins {
        application
        jacoco
    }
    
    application {
        mainClass = "org.gradle.MyMain"
    }
    
    jacoco {
        applyTo(tasks.run.get())
    }
    
    tasks.register<JacocoReport>("applicationCodeCoverageReport") {
        executionData(tasks.run.get())
        sourceSets(sourceSets.main.get())
    }
    // end::application-configuration[]
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 382 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultProjectComponentSelectorTest.groovy

            ':myProjectPath2' | false    | false    | false
        }
    
        def "prevents matching of null id"() {
            when:
            ProjectComponentSelector defaultBuildComponentSelector = newSelector(':myPath')
            defaultBuildComponentSelector.matchesStrictly(null)
    
            then:
            Throwable t = thrown(AssertionError)
            assert t.message == 'identifier cannot be null'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    				"manifests",
    				"pki",
    				".mydir",
    			},
    			setupFiles: []string{
    				"manifests/etcd.yaml",
    				"manifests/kube-apiserver.yaml",
    				"pki/ca.pem",
    				kubeadmconstants.AdminKubeConfigFileName,
    				kubeadmconstants.KubeletKubeConfigFileName,
    				".mydir/.myfile",
    			},
    			verifyExists: []string{
    				"manifests",
    				"pki",
    				".mydir",
    				".mydir/.myfile",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        val keyPair: KeyPair = heldCertificate.keyPair
        val certificatePem: String = heldCertificate.certificatePem()
        val privateKeyPkcs8Pem: String = heldCertificate.privateKeyPkcs8Pem()
        val privateKeyPkcs1Pem: String = heldCertificate.privateKeyPkcs1Pem()
      }
    
      @Test
      fun heldCertificateBuilder() {
        val keyPair: KeyPair = KeyPairGenerator.getInstance("").genKeyPair()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

                <type>jar</type>
                <classifier>myjar</classifier>
                <version>version-two</version>
            </dependency>
            <dependency>
                <groupId>group-two</groupId>
                <artifactId>artifact-two</artifactId>
                <type>jar</type>
                <classifier>myjar</classifier>
                <version>version-three</version>
            </dependency>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top