Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for setIvy (0.46 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                            performanceResults.setDaemon((Boolean) testExecutions.getObject(8));
                            performanceResults.setOperatingSystem(testExecutions.getString(9));
                            performanceResults.setJvm(testExecutions.getString(10));
                            performanceResults.setVcsBranch(mapVcsBranch(channelPatterns.get(0), testExecutions.getString(11).trim()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/aes.go

    			(*C.uint8_t)(unsafe.Pointer(&src[0])),
    			(*C.uint8_t)(unsafe.Pointer(&dst[0])),
    			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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

         */
        IvyFileModule withExtraInfo(Map extraInfo) {
            this.extraInfo.putAll(extraInfo)
            return this
        }
    
        @Override
        ModuleArtifact getIvy() {
            return moduleArtifact([name: "ivy", type: "ivy", ext: "xml"], ivyPattern)
        }
    
        @Override
        ModuleArtifact getModuleMetadata() {
            moduleArtifact(name: module, type: 'module', ext: "module")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashMap.java

       */
      void insertEntry(
          int entryIndex, @ParametricNullness K key, @ParametricNullness V value, int hash, int mask) {
        this.setEntry(entryIndex, CompactHashing.maskCombine(hash, UNSET, mask));
        this.setKey(entryIndex, key);
        this.setValue(entryIndex, value);
      }
    
      /** Resizes the entries storage if necessary. */
      private void resizeMeMaybe(int newSize) {
        int entriesSize = requireEntries().length;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CompactHashMap.java

       */
      void insertEntry(
          int entryIndex, @ParametricNullness K key, @ParametricNullness V value, int hash, int mask) {
        this.setEntry(entryIndex, CompactHashing.maskCombine(hash, UNSET, mask));
        this.setKey(entryIndex, key);
        this.setValue(entryIndex, value);
      }
    
      /** Resizes the entries storage if necessary. */
      private void resizeMeMaybe(int newSize) {
        int entriesSize = requireEntries().length;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

    import org.gradle.api.tasks.Optional;
    import java.io.File;
    
    public class SomeTask extends DefaultTask {
        private $type v;
        @Input
        public $type getV() { return v; }
        void setV($type v) { this.v = v; }
    
        File d;
        @OutputDirectory
        public File getD() { return d; }
    
        @TaskAction
        public void go() { }
    }
    """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DfsImpl.java

                     * attempts to resolve DFS use the last successful
                     * referral first.
                     */
                    tmp.setCacheMap(links.map);
                    tmp.setKey("\\");
                    tmp = tmp.next();
                }
                while ( tmp != dr );
    
                if ( log.isDebugEnabled() ) {
                    log.debug("Have referral " + dr);
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	return
    }
    
    func roundUp(a, b int) int {
    	return a + (b-a%b)%b
    }
    
    // cbcMode is an interface for block ciphers using cipher block chaining.
    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    		got := e.Interface()
    		if got != want {
    			t.Errorf("%q: want (%T) %v, got (%T) %v", k.String(), want, want, got, got)
    		}
    		if setkey, key := valueToString(k), valueToString(iter.Key()); setkey != key {
    			t.Errorf("MapIter.Key() = %q, MapIter.SetKey() = %q", key, setkey)
    		}
    		if setval, val := valueToString(e), valueToString(iter.Value()); setval != val {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/reflect/value.go

    	ktype := t.Key
    
    	iter.m.mustBeExported() // do not let unexported m leak
    	key := Value{ktype, iterkey, iter.m.flag | flag(ktype.Kind()) | flagIndir}
    	key = key.assignTo("reflect.MapIter.SetKey", v.typ(), target)
    	typedmemmove(v.typ(), v.ptr, key.ptr)
    }
    
    // Value returns the value of iter's current map entry.
    func (iter *MapIter) Value() Value {
    	if !iter.hiter.initialized() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top