Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,554 for xremove (0.15 sec)

  1. src/cmd/dist/build.go

    				xremove(exe)
    			}
    			xremove(exe + ".exe")
    		case !d.IsDir() && strings.HasPrefix(d.Name(), "z"):
    			// Remove generated file, identified by marker string.
    			head := make([]byte, 512)
    			if f, err := os.Open(path); err == nil {
    				io.ReadFull(f, head)
    				f.Close()
    			}
    			if bytes.HasPrefix(head, generated) {
    				xremove(path)
    			}
    		}
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/dist/util.go

    func xmkdirall(p string) {
    	err := os.MkdirAll(p, 0777)
    	if err != nil {
    		fatalf("%v", err)
    	}
    }
    
    // xremove removes the file p.
    func xremove(p string) {
    	if vflag > 2 {
    		errprintf("rm %s\n", p)
    	}
    	os.Remove(p)
    }
    
    // xremoveall removes the file or directory tree rooted at p.
    func xremoveall(p string) {
    	if vflag > 2 {
    		errprintf("rm -r %s\n", p)
    	}
    	os.RemoveAll(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/operator-remove.go

    }
    
    func operatorRemoveCmd(ctx cli.Context, rootArgs *RootArgs, orArgs *operatorRemoveArgs) *cobra.Command {
    	return &cobra.Command{
    		Use:   "remove",
    		Short: "Removes the Istio operator controller from the cluster.",
    		Long:  "The remove subcommand removes the Istio operator controller from the cluster.",
    		Args: func(cmd *cobra.Command, args []string) error {
    			if orArgs.revision == "" && !orArgs.purge {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. releasenotes/notes/remove-remote-profile.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 38832
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 20 14:28:30 UTC 2022
    - 211 bytes
    - Viewed (0)
  5. releasenotes/notes/addon-remove.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 22762
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 344 bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	for key := range evictUnits {
    		toRemove := len(evictUnits[key]) - MaxContainers
    
    		if toRemove > 0 {
    			evictUnits[key] = cgc.removeOldestN(ctx, evictUnits[key], toRemove)
    		}
    	}
    }
    
    // removeOldestN removes the oldest toRemove containers and returns the resulting slice.
    func (cgc *containerGC) removeOldestN(ctx context.Context, containers []containerGCInfo, toRemove int) []containerGCInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. manifests/profiles/remote.yaml

    # The remote profile is used to configure a mesh cluster without a locally deployed control plane.
    # Only the injector mutating webhook configuration is installed.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        istiodRemote:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 418 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/envoy-filter-remove-operation.yaml

    # If the patch operation is REMOVE and the applyTo is set to ROUTE_CONFIGURATION or HTTP_ROUTE, then an error will occur 
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-remove-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: mysvc1
      configPatches:
      - applyTo: NETWORK_FILTER # http connection manager is a filter in Envoy
        match:
          context: GATEWAY
          listener:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. releasenotes/notes/remove-operator-httpfetch.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 16:13:50 UTC 2022
    - 141 bytes
    - Viewed (0)
  10. internal/config/cache/remote.go

    }
    
    var etagRegex = regexp.MustCompile("\"*?([^\"]*?)\"*?$")
    
    // canonicalizeETag returns ETag with leading and trailing double-quotes removed,
    // if any present
    func canonicalizeETag(etag string) string {
    	return etagRegex.ReplaceAllString(etag, "$1")
    }
    
    // Init - populates the input values, initializes CondCheck
    // before sending the request remotely.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top