Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for setIvy (0.12 sec)

  1. src/math/big/doc.go

    	z2 := new(Rat).SetFloat64(1.25)   // z2 := 5/4
    	z3 := new(Float).SetInt(z1)       // z3 := 123.0
    
    Setters, numeric operations and predicates are represented as methods of
    the form:
    
    	func (z *T) SetV(v V) *T          // z = v
    	func (z *T) Unary(x *T) *T        // z = unary x
    	func (z *T) Binary(x, y *T) *T    // z = x binary y
    	func (x *T) Pred() P              // p = pred(x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. internal/config/config.go

    			fields[i] = strings.TrimSpace(input[valueIndexes[i]:valueIndexes[j]])
    		} else {
    			fields[i] = strings.TrimSpace(input[valueIndexes[i]:])
    		}
    	}
    	return fields
    }
    
    // SetKVS - set specific key values per sub-system.
    func (c Config) SetKVS(s string, defaultKVS map[string]KVS) (dynamic bool, err error) {
    	subSys, inputs, tgt, err := GetSubSys(s)
    	if err != nil {
    		return false, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. test-site/activator-launch-1.3.2.jar

    public void Locks$GlobalLock$$anonfun$withFileLock$1(Locks$GlobalLock, java.util.concurrent.Callable); } xsbt/boot/ConfigurationParser$$anonfun$getIvy$1.class package xsbt.boot; public final synchronized class ConfigurationParser$$anonfun$getIvy$1 extends scala.runtime.AbstractFunction1 implements scala.Serializable { public void ConfigurationParser$$anonfun$getIvy$1(); } xsbt/boot/CrossVersionUtil$$anonfun$binaryScalaVersion$1.class package xsbt.boot; public final synchronized class CrossVersionUtil$...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top