Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for mypair (0.09 sec)

  1. manifests/charts/istio-cni/templates/daemonset.yaml

                privileged: true # always requires privilege to be useful (install node plugin, etc)
                runAsGroup: 0
                runAsUser: 0
                runAsNonRoot: false
                # Both ambient and sidecar repair mode require elevated node privileges to function.
                # But we don't need _everything_ in `privileged`, so drop+readd capabilities based on feature.
                # privileged is redundant with CAP_SYS_ADMIN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  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. src/cmd/go/testdata/script/cover_main_import_path.txt

    # Go test -cover should behave the same way.
    go test -cover .
    stdout 'ok\s+mainwithtest\s+\S+\s+coverage:'
    ! stdout 'ok\s+main\s+.*'
    
    
    -- go.mod --
    module mainwithtest
    
    go 1.20
    -- mymain.go --
    package main
    
    func main() {
    	println("hi mom")
    }
    
    func Mainer() int {
    	return 42
    }
    -- main_test.go --
    package main
    
    import "testing"
    
    func TestCoverage(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/dsl/DependencyResultSpecTest.groovy

        }
    
        def "does not match for dependencies other than requested ModuleComponentSelector"() {
            expect:
            !new DependencyResultSpec(notation).isSatisfiedBy(newDependency(TestComponentIdentifiers.newSelector(":myPath"), "org.foo", "foo-core", "1.22"))
    
            where:
            notation << ['1.+']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 04:36:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top