Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 837 for Unexport (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         * @return this
         */
        ClassLoaderScope export(ClassPath classPath);
    
        /**
         * Makes the provided classes visible to this scope and its children. The classes are loaded in their own ClassLoader whose parent is the export ClassLoader
         * of the parent scope.
         *
         * <p>Can not be called after being locked.
         *
         * @return this
         */
        ClassLoaderScope export(ClassLoader classLoader);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. buildscripts/verify-healing.sh

    GOPATH=/tmp/gopath
    
    function start_minio_3_node() {
    	for i in $(seq 1 3); do
    		rm "${WORK_DIR}/dist-minio-server$i.log"
    	done
    
    	export MINIO_ROOT_USER=minio
    	export MINIO_ROOT_PASSWORD=minio123
    	export MINIO_ERASURE_SET_DRIVE_COUNT=6
    	export MINIO_CI_CD=1
    
    	first_time=$(find ${WORK_DIR}/ | grep format.json | wc -l)
    
    	start_port=$1
    	args=""
    	for d in $(seq 1 3 5); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. buildscripts/heal-inconsistent-versions.sh

    	exit 1
    fi
    
    function start_minio_4drive() {
    	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
    
    	mkdir ${WORK_DIR}
    	C_PWD=${PWD}
    	if [ ! -x "$PWD/mc" ]; then
    		MC_BUILD_DIR="mc-$RANDOM"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/testdata/testwinlib/main.go

    package main
    
    // #include <windows.h>
    // typedef void(*callmeBackFunc)();
    // static void bridgeCallback(callmeBackFunc callback) {
    //	callback();
    //}
    import "C"
    
    // CallMeBack call backs C code.
    //
    //export CallMeBack
    func CallMeBack(callback C.callmeBackFunc) {
    	C.bridgeCallback(callback)
    }
    
    // Dummy is called by the C code before registering the exception/continue handlers simulating a debugger.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 925 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_compiled_concurrent.txt

    # Regression test for golang.org/issue/29667:
    # spurious 'failed to cache compiled Go files' errors.
    
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    go list -json -compiled -test=false -export=false -deps=true -- . &
    go list -json -compiled -test=false -export=false -deps=true -- . &
    wait
    
    -- go.mod --
    module sandbox/bar
    -- bar.go --
    package bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 401 bytes
    - Viewed (0)
  6. hack/make-rules/test-cmd.sh

    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
    export KUBE_CACHE_MUTATION_DETECTOR
    
    # panic the server on watch decode errors since they are considered coder mistakes
    KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-true}"
    export KUBE_PANIC_WATCH_DECODE_ERROR
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller_test.go

    	})
    
    	t.Run("no overwrite", func(t *testing.T) {
    		// manually create serviceexport
    		export := mcsapi.ServiceExport{
    			TypeMeta: metav1.TypeMeta{
    				Kind:       "ServiceExport",
    				APIVersion: features.MCSAPIVersion,
    			},
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: "exportable-ns",
    				Name:      "manual-export",
    			},
    			Status: mcsapi.ServiceExportStatus{
    				Conditions: []mcsapi.ServiceExportCondition{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. samples/multicluster/README.md

    east-west traffic. This is done to avoid having east-west traffic flooding
    the default north-south ingress gateway.
    
    Run the following command to deploy the east-west gateway to a primary cluster:
    
    ```bash
    export MESH=mesh1
    export CLUSTER=cluster1
    export NETWORK=network1
    ./samples/multicluster/gen-eastwest-gateway.sh | \
        istioctl manifest generate -f - | \
        kubectl apply -f -
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. prow/lib.sh

            GIT_SHA="$(git rev-parse --verify HEAD)"
            export GIT_SHA
          else
            export GIT_SHA="${PULL_BASE_SHA}"
          fi
        else
          export GIT_SHA="${PULL_PULL_SHA}"
        fi
      else
        # Use the current commit.
        GIT_SHA="$(git rev-parse --verify HEAD)"
        export GIT_SHA
      fi
      GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
      export GIT_BRANCH
      setup_gcloud_credentials
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. docs/site-replication/run-multi-site-minio-idp.sh

    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    
    if [ ! -f ./mc ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top