Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 403 for vetAction (0.26 sec)

  1. src/cmd/go/internal/vet/vet.go

    			continue
    		}
    		if len(ptest.GoFiles) > 0 || len(ptest.CgoFiles) > 0 {
    			root.Deps = append(root.Deps, b.VetAction(work.ModeBuild, work.ModeBuild, ptest))
    		}
    		if pxtest != nil {
    			root.Deps = append(root.Deps, b.VetAction(work.ModeBuild, work.ModeBuild, pxtest))
    		}
    	}
    	b.Do(ctx, root)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    	}
    
    	return a
    }
    
    // VetAction returns the action for running go vet on package p.
    // It depends on the action for compiling p.
    // If the caller may be causing p to be installed, it is up to the caller
    // to make sure that the install depends on (runs after) vet.
    func (b *Builder) VetAction(mode, depMode BuildMode, p *load.Package) *Action {
    	a := b.vetAction(mode, depMode, p)
    	a.VetxOnly = false
    	return a
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	if testVet.off {
    		return
    	}
    
    	vet := b.VetAction(work.ModeBuild, work.ModeBuild, p)
    	runAction.Deps = append(runAction.Deps, vet)
    	// Install will clean the build directory.
    	// Make sure vet runs first.
    	// The install ordering in b.VetAction does not apply here
    	// because we are using a custom installAction (created above).
    	if installAction != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. releasenotes/notes/protocol-detection-timeout.yaml

    kind: feature
    area: networking
    issue:
    - 24379
    releaseNotes:
    - |
      **Removed** the protocol detection timeout by default, reducing traffic failures during slow connections.
    upgradeNotes:
    - title: Protocol Detection Timeout Changes
      content: |
        In order to support permissive mTLS traffic as well as [automatic protocol detection](istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#automatic-protocol-selection),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. releasenotes/notes/fix-cni-ipv6-detection.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 36871
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 16 23:02:24 UTC 2022
    - 196 bytes
    - Viewed (0)
  6. src/main/java/jcifs/FileNotifyInformation.java

         * The operating system detects a change in file size only when the file is written to the disk. For operating
         * systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.s
         */
        public static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  7. releasenotes/notes/drop-protocol-detection.yaml

    John Howard <******@****.***> 1682620589 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 18:36:29 UTC 2023
    - 209 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/certs_test.go

    		client := fakeclientset.NewSimpleClientset()
    		client.PrependReactor("get", "configmaps", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    			getAction := action.(clientgotesting.GetAction)
    			if getAction.GetNamespace() == metav1.NamespaceSystem && getAction.GetName() == kubeadmconstants.KubeadmConfigConfigMap {
    				cm := &v1.ConfigMap{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    				{
    					verb: "get",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    						return true, nil, errors.NewNotFound(action.(fakeclient.GetAction).GetResource().GroupResource(), action.(fakeclient.GetAction).GetName())
    					},
    				},
    				{
    					verb: "create",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  10. releasenotes/notes/fix-eks-ipv6.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 36961
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 08 20:18:08 UTC 2022
    - 246 bytes
    - Viewed (0)
Back to top