Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 568 for pruned (0.1 sec)

  1. releasenotes/notes/30833.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 30833
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 21 22:14:28 UTC 2021
    - 201 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/deploymentconfig-multi.yaml

                containerNames:
                  - "helloworld"
                from:
                  kind: "ImageStreamTag"
                  name: "hello-go-gke:1.0"
          strategy:
            type: "Rolling"
          paused: false
          revisionHistoryLimit: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/discovery/token/token.go

    // It then makes sure it can trust the API Server by looking at the JWS-signed tokens and (if CACertHashes is not empty)
    // validating the cluster CA against a set of pinned public keys
    func RetrieveValidatedConfigInfo(cfg *kubeadmapi.Discovery, timeout time.Duration) (*clientcmdapi.Config, error) {
    	return retrieveValidatedConfigInfo(nil, cfg, constants.DiscoveryRetryInterval, timeout)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. .github/workflows/arm-ci.yml

              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/pinner_test.go

    	if !runtime.IsPinned(unsafe.Pointer(&ifc)) {
    		t.Fatal("not marked as pinned")
    	}
    	if runtime.IsPinned(unsafe.Pointer(o)) {
    		t.Fatal("marked as pinned")
    	}
    	pinner.Unpin()
    	pinner.Pin(ifc)
    	if !runtime.IsPinned(unsafe.Pointer(o)) {
    		t.Fatal("not marked as pinned")
    	}
    	if runtime.IsPinned(unsafe.Pointer(&ifc)) {
    		t.Fatal("marked as pinned")
    	}
    	pinner.Unpin()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:36:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. .github/workflows/arm-cd.yml

              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository for nightly (skipped for releases)
            if: ${{ github.event_name == 'schedule' }}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml

            automatic: true
            containerNames:
              - "helloworld"
            from:
              kind: "ImageStreamTag"
              name: "hello-go-gke:1.0"
      strategy:
        type: "Rolling"
      paused: false
      revisionHistoryLimit: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 774 bytes
    - Viewed (0)
  8. releasenotes/notes/47961.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 47960
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 197 bytes
    - Viewed (0)
  9. .github/workflows/mint.yml

                docker volume rm ${volume} || true
              done
    
              docker rmi -f quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}
              docker system prune -f || true
              docker volume prune -f || true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinterListener.java

        /**
         * Invoked after a failure header has been printed, and before any stack frames have been printed.
         */
        void beforeFrames();
    
        /**
         * Invoked before a given stack frame is printed.
         */
        void beforeFrame(StackTraceElement element, StackTraceRelevance relevance);
    
        /**
         * Invoked after all stack frames of a failure have been printed.
         */
        void afterFrames();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top