Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 213 for alternate (0.31 sec)

  1. src/mime/multipart/testdata/nested-mime

    L1:--e89a8ff1c1e83553e304be640612
    L2:Content-Type: multipart/alternative; boundary=e89a8ff1c1e83553e004be640610
    L3:
    L4:--e89a8ff1c1e83553e004be640610
    L5:Content-Type: text/plain; charset=UTF-8
    L6:
    L7:*body*
    L8:
    L9:--e89a8ff1c1e83553e004be640610
    L10:Content-Type: text/html; charset=UTF-8
    L11:
    L12:<b>body</b>
    L13:
    L14:--e89a8ff1c1e83553e004be640610--
    L15:--e89a8ff1c1e83553e304be640612
    L16:Content-Type: image/png; name="x.png"
    L17:Content-Disposition: attachment; 
    L18:	filename="x.png"
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor.txt

    ! exists vendor/w
    ! exists vendor/w/LICENSE
    ! exists vendor/x/x2
    ! exists vendor/x/x2/LICENSE
    
    # 'go mod vendor' should work with an alternative vendor directory if the -o flag is provided.
    go mod vendor -v -o alternative-vendor-dir
    exists alternative-vendor-dir/modules.txt
    exists alternative-vendor-dir/a/foo/LICENSE
    
    # 'go mod vendor' should interpret paths relative to the current working directory when the -o flag is provided.
    mkdir dir1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. istioctl/pkg/clioptions/central.go

    	Timeout time.Duration
    
    	// InsecureSkipVerify skips client verification the server's certificate chain and host name.
    	InsecureSkipVerify bool
    
    	// XDSSAN is the expected Subject Alternative Name of the XDS server
    	XDSSAN string
    
    	// Plaintext forces plain text communication (for talking to port 15010)
    	Plaintext bool
    
    	// GCP project number or ID to use for XDS calls, if any.
    	GCPProject string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder_example_test.go

    		// Configure with a scheme to get typed objects in the versions registered with the scheme.
    		// As an alternative, could call Unstructured() to get unstructured objects.
    		WithScheme(scheme.Scheme, scheme.Scheme.PrioritizedVersionsAllGroups()...).
    		// Provide input via a Reader.
    		// As an alternative, could call Path(false, "/path/to/file") to read from a file.
    		Stream(bytes.NewBufferString(exampleManifest), "input").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/conditional/kotlin/build.gradle.kts

    signing {
        setRequired({
            (project.extra["isReleaseVersion"] as Boolean) && gradle.taskGraph.hasTask("publish")
        })
        sign(publishing.publications["main"])
    }
    // end::conditional-signing[]
    
    // Alternative to signing.required
    // tag::only-if[]
    tasks.withType<Sign>().configureEach {
        onlyIf("isReleaseVersion is set") { project.extra["isReleaseVersion"] as Boolean }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 930 bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/feature_request.md

    **Describe the solution you'd like**
    A clear and concise description of what you want to happen.
    
    **Describe alternatives you've considered**
    A clear and concise description of any alternative solutions or features you've considered.
    
    **Additional context**
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 20:49:54 UTC 2019
    - 610 bytes
    - Viewed (0)
  7. pkg/proxy/apis/well_known_labels.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package apis
    
    const (
    	// LabelServiceProxyName indicates that an alternative service
    	// proxy will implement this Service.
    	LabelServiceProxyName = "service.kubernetes.io/service-proxy-name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 29 16:28:35 UTC 2019
    - 766 bytes
    - Viewed (0)
  8. .gitignore

    /test/garbage/*.out
    /test/pass.out
    /test/run.out
    /test/times.out
    
    # This file includes artifacts of Go build that should not be checked in.
    # For files created by specific development environment (e.g. editor),
    # use alternative ways to exclude files from git.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 958 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/signing/conditional/groovy/build.gradle

        }
    }
    
    // tag::conditional-signing[]
    signing {
        required { isReleaseVersion && gradle.taskGraph.hasTask("publish") }
        sign publishing.publications.main
    }
    // end::conditional-signing[]
    
    // Alternative to signing.required
    // tag::only-if[]
    tasks.withType(Sign) {
        onlyIf("isReleaseVersion is set") { isReleaseVersion }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 819 bytes
    - Viewed (0)
  10. src/log/slog/example_logvaluer_secret_test.go

    // It avoids revealing the token.
    func (Token) LogValue() slog.Value {
    	return slog.StringValue("REDACTED_TOKEN")
    }
    
    // This example demonstrates a Value that replaces itself
    // with an alternative representation to avoid revealing secrets.
    func ExampleLogValuer_secret() {
    	t := Token("shhhh!")
    	logger := slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{ReplaceAttr: slogtest.RemoveTime}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 906 bytes
    - Viewed (0)
Back to top