Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 837 for Unexport (0.15 sec)

  1. src/cmd/cgo/internal/test/issue4029.go

    */
    import "C"
    
    import (
    	"testing"
    )
    
    var callbacks int
    
    //export IMPIsOpaque
    func IMPIsOpaque() {
    	callbacks++
    }
    
    //export IMPInitWithFrame
    func IMPInitWithFrame() {
    	callbacks++
    }
    
    //export IMPDrawRect
    func IMPDrawRect() {
    	callbacks++
    }
    
    //export IMPWindowResize
    func IMPWindowResize() {
    	callbacks++
    }
    
    func test4029(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. docs/distributed/README.md

    ```sh
    export MINIO_ROOT_USER=<ACCESS_KEY>
    export MINIO_ROOT_PASSWORD=<SECRET_KEY>
    minio server http://host{1...n}/export{1...m} http://host{o...z}/export{1...m}
    ```
    
    For example:
    
    ```
    minio server http://host{1...4}/export{1...16} http://host{5...12}/export{1...16}
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. docs/logging/README.md

    ```
    export MINIO_AUDIT_WEBHOOK_ENABLE_target1="on"
    export MINIO_AUDIT_WEBHOOK_AUTH_TOKEN_target1="token"
    export MINIO_AUDIT_WEBHOOK_ENDPOINT_target1=http://localhost:8080/minio/logs
    export MINIO_AUDIT_WEBHOOK_CLIENT_CERT="/tmp/cert.pem"
    export MINIO_AUDIT_WEBHOOK_CLIENT_KEY=="/tmp/key.pem"
    minio server /mnt/data
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_export_embed.txt

    # Regression test for https://go.dev/issue/58885:
    # 'go list -json=Export' should not fail due to missing go:embed metadata.
    
    [short] skip 'runs the compiler to produce export data'
    
    go list -json=Export -export .
    
    -- go.mod --
    module example
    go 1.20
    -- example.go --
    package example
    
    import _ "embed"
    
    //go:embed example.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:01:35 UTC 2023
    - 340 bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/testdata/versions/test.go

    // To create a test case for a new export format version,
    // build this package with the latest compiler and store
    // the resulting .a file appropriately named in the versions
    // directory. The VersionHandling test will pick it up.
    //
    // In the testdata/versions:
    //
    // go build -o test_go1.$X_$Y.a test.go
    //
    // with $X = Go version and $Y = export format version
    // (add 'b' or 'i' to distinguish between binary and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 13 04:39:18 UTC 2018
    - 918 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    //
    //export TestSEGV
    func TestSEGV() {
    	defer func() {
    		if recover() == nil {
    			fmt.Fprintln(os.Stderr, "no panic from segv")
    			os.Exit(1)
    		}
    	}()
    	*P = 0
    	fmt.Fprintln(os.Stderr, "continued after segv")
    	os.Exit(1)
    }
    
    // Noop ensures that the Go runtime is initialized.
    //
    //export Noop
    func Noop() {
    }
    
    // Raise SIGPIPE.
    //
    //export GoRaiseSIGPIPE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/svn.go

    				return vcsErrorf("file reported by 'svn list', but not written by 'svn export': %s", e.Name)
    			}
    			return fmt.Errorf("error opening file created by 'svn export': %v", err)
    		}
    
    		n, err := io.Copy(zf, f)
    		f.Close()
    		if err != nil {
    			return err
    		}
    		if n != e.Size {
    			return vcsErrorf("file size differs between 'svn list' and 'svn export': file %s listed as %v bytes, but exported as %v bytes", e.Name, e.Size, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFileTest.groovy

            then:
            normaliseLineSeparators(moduleMapFile.text) == """module foo {
    \tumbrella "${headers.absolutePath}"
    \tumbrella "${moreHeaders.absolutePath}"
    \texport *
    }
    """
        }
    
        def "does not include non-existent directories"() {
            def moduleMapFile = new File(tempDir, "module.modulemap")
            def headers = new File(tempDir, 'headers').tap { mkdirs() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. hack/jenkins/verify-dockerized.sh

    # kubernetes repo mapped in. See k8s.io/test-infra/scenarios/kubernetes_verify.py
    
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    # Set artifacts directory
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    # Produce a JUnit-style XML test report
    export KUBE_JUNIT_REPORT_DIR="${ARTIFACTS}"
    
    export LOG_LEVEL=4
    
    cd "${GOPATH}/src/k8s.io/kubernetes"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 19:07:26 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  10. buildscripts/resolve-right-versions.sh

    	exit 1
    fi
    
    function start_minio_5drive() {
    	start_port=$1
    
    	export MINIO_ROOT_USER=minio
    	export MINIO_ROOT_PASSWORD=minio123
    	export MC_HOST_minio="http://minio:minio123@127.0.0.1:${start_port}/"
    	unset MINIO_KMS_AUTO_ENCRYPTION # do not auto-encrypt objects
    	export MINIO_CI_CD=1
    
    	MC_BUILD_DIR="mc-$RANDOM"
    	if ! git clone --quiet https://github.com/minio/mc "$MC_BUILD_DIR"; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 16 14:51:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top