Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for fileonly (0.37 sec)

  1. pkg/kubelet/util/util_windows_test.go

    		},
    		{
    			originalpath:   "/file",
    			normalizedPath: "c:\\file",
    		},
    		{
    			originalpath:   "\\file",
    			normalizedPath: "c:\\file",
    		},
    		{
    			originalpath:   "fileonly",
    			normalizedPath: "fileonly",
    		},
    	}
    
    	for _, test := range tests {
    		assert.Equal(t, test.normalizedPath, NormalizePath(test.originalpath))
    	}
    }
    
    func TestLocalEndpoint(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/crypto/tls/fipsonly/fipsonly.go

    //go:build boringcrypto
    
    // Package fipsonly restricts all TLS configuration to FIPS-approved settings.
    //
    // The effect is triggered by importing the package anywhere in a program, as in:
    //
    //	import _ "crypto/tls/fipsonly"
    //
    // This package only exists when using Go compiled with GOEXPERIMENT=boringcrypto.
    package fipsonly
    
    // This functionality is provided as a side effect of an import to make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 901 bytes
    - Viewed (0)
  3. src/crypto/internal/boring/sig/sig.go

    // the final binary. The functions themselves are no-ops.
    package sig
    
    // BoringCrypto indicates that the BoringCrypto module is present.
    func BoringCrypto()
    
    // FIPSOnly indicates that package crypto/tls/fipsonly is present.
    func FIPSOnly()
    
    // StandardCrypto indicates that standard Go crypto is present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:58:43 UTC 2017
    - 614 bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializerTest.groovy

        }
    
        def "serializes state with shared include files"() {
            when:
            def fileOne = new File("one")
            def fileStates = [:]
            def stateOne = compilationFileState(TestHashCodes.hashCodeFrom(0x12345678), ["ONE", "TWO"])
            fileStates.put(fileOne, stateOne)
    
            def fileTwo = new File("two")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/sig/sig_other.s

    // search a particular binary to see if they are present.
    // On other platforms (those using this source file), they don't.
    
    //go:build !amd64
    
    TEXT ·BoringCrypto(SB),$0
    	RET
    
    TEXT ·FIPSOnly(SB),$0
    	RET
    
    TEXT ·StandardCrypto(SB),$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 499 bytes
    - Viewed (0)
  6. src/crypto/internal/boring/sig/sig_amd64.s

    	BYTE $0x3e; BYTE $0x99; BYTE $0xc5; BYTE $0x9c;
    	BYTE $0xf9; BYTE $0x11; BYTE $0xcb; BYTE $0x8e;
    	BYTE $0x80; BYTE $0xda;  BYTE $0xf1; BYTE $0x2f;
    	END
    
    // FIPSOnly indicates that crypto/tls/fipsonly is present.
    TEXT ·FIPSOnly(SB),NOSPLIT,$0
    	START
    	BYTE $0x36; BYTE $0x3C; BYTE $0xB9; BYTE $0xCE;
    	BYTE $0x9D; BYTE $0x68; BYTE $0x04; BYTE $0x7D;
    	BYTE $0x31; BYTE $0xF2; BYTE $0x8D; BYTE $0x32;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:58:43 UTC 2017
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/PathJavadocOptionFileOptionTest.groovy

            then:
            0 * writerContextMock._
        }
    
        def testWriteNoneNullValue() throws IOException {
            final File fileOne = new File("fileOne")
            final File fileTwo = new File("fileTwo")
    
            pathOption.getValue().add(fileOne)
            pathOption.getValue().add(fileTwo)
    
            when:
            pathOption.write(writerContextMock)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/crypto/tls/fipsonly/fipsonly_test.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    package fipsonly
    
    import (
    	"crypto/internal/boring/fipstls"
    	"testing"
    )
    
    func Test(t *testing.T) {
    	if !fipstls.Required() {
    		t.Fatal("fipstls.Required() = false, must be true")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 371 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_gobuild_import.txt

    exec $WORK/testimport$GOEXE gobuild.example.com/x/y/z/w .
    stdout w1.go
    cd w
    exec $WORK/testimport$GOEXE gobuild.example.com/x/y/z/w ..
    stdout w1.go
    
    # go/build's Import in FindOnly mode should find directories by invoking the go command
    #
    # Calling build.Import in build.FindOnly mode on an import path of a Go package
    # that produces errors when loading (e.g., due to build constraints not matching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. src/go/build/build_test.go

    		{"Import(full, 0)", "go/build/doesnotexist", "", 0},
    		{"Import(local, 0)", "./doesnotexist", filepath.Join(ctxt.GOROOT, "src/go/build"), 0},
    		{"Import(full, FindOnly)", "go/build/doesnotexist", "", FindOnly},
    		{"Import(local, FindOnly)", "./doesnotexist", filepath.Join(ctxt.GOROOT, "src/go/build"), FindOnly},
    	}
    
    	defer os.Setenv("GO111MODULE", os.Getenv("GO111MODULE"))
    
    	for _, GO111MODULE := range []string{"off", "on"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top