Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,527 for modes (0.07 sec)

  1. src/cmd/link/link_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	modes := []string{"auto"}
    	if testenv.HasCGO() {
    		modes = append(modes, "external")
    	}
    
    	// check a text symbol, a data symbol, and a BSS symbol
    	syms := []string{"main.main", "main.X", "main.Y"}
    
    	for _, mode := range modes {
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "build", "-ldflags=-s -linkmode="+mode, "-o", exe, src)
    		out, err := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1/generated.proto

      //
      // The other mode is "Ephemeral". In this mode, volumes are defined inline inside the pod spec
      // with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod.
      // A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.
      //
      // For more information about implementing this mode, see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_s390x.go

    // counterCrypt encrypts src using AES in counter mode and places the result
    // into dst. cnt is the initial count value and will be updated with the next
    // count value. The length of dst must be greater than or equal to the length
    // of src.
    func (g *gcmAsm) counterCrypt(dst, src []byte, cnt *gcmCount) {
    	// Copying src into a buffer improves performance on some models when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/aes.go

    			C.size_t(len(src)), x.key,
    			(*C.uint8_t)(unsafe.Pointer(&x.iv[0])), x.mode)
    	}
    }
    
    func (x *aesCBC) SetIV(iv []byte) {
    	if len(iv) != aesBlockSize {
    		panic("cipher: incorrect length IV")
    	}
    	copy(x.iv[:], iv)
    }
    
    func (c *aesCipher) NewCBCEncrypter(iv []byte) cipher.BlockMode {
    	x := &aesCBC{key: &c.enc, mode: C.GO_AES_ENCRYPT}
    	copy(x.iv[:], iv)
    	return x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    			return err
    		}
    
    		args, err := ReadPlan(ctx, globalArgs)
    		if err != nil {
    			return fmt.Errorf("plan: %v", err)
    		}
    
    		// The Istio image builder has two building modes - one utilizing docker, and one manually constructing
    		// images using the go-containerregistry (crane) libraries.
    		// The crane builder is much faster but less tested.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    include::{snippetsPath}/plugins/buildServiceFromWorkAction/groovy/buildSrc/src/main/java/Download.java[]
    ----
    ====
    
    Currently, it is impossible to use a build service with a worker API action that uses ClassLoader or process isolation modes.
    
    == Accessing the build service concurrently
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    specification and implemented in Kubernetes via the usual PV/PVC mechanism.\n\nThe other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.\n\nFor more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/generated.proto

      //
      // The other mode is "Ephemeral". In this mode, volumes are defined inline inside the pod spec
      // with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod.
      // A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.
      //
      // For more information about implementing this mode, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      //
      // The other mode is "Ephemeral". In this mode, volumes are defined inline inside the pod spec
      // with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod.
      // A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.
      //
      // For more information about implementing this mode, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  10. src/cmd/distpack/pack.go

    	tw := tar.NewWriter(zw)
    
    	// Find the mode and mtime to use for directory entries,
    	// based on the mode and mtime of the first file we see.
    	// We know that modes and mtimes are uniform across the archive.
    	var dirMode fs.FileMode
    	var mtime time.Time
    	for _, f := range a.Files {
    		dirMode = fs.ModeDir | f.Mode | (f.Mode&0444)>>2 // copy r bits down to x bits
    		mtime = f.Time
    		break
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top