Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for setIvy (0.2 sec)

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

        }
    
        public void setOperatingSystem(String operatingSystem) {
            this.operatingSystem = operatingSystem;
        }
    
        public String getJvm() {
            return jvm;
        }
    
        public void setJvm(String jvm) {
            this.jvm = jvm;
        }
    
        public String getChannel() {
            return channel;
        }
    
        public void setChannel(String channel) {
            this.channel = channel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

        }
    
        IvyHttpModule allowAll() {
            server.allowGetOrHead(prefix, backingModule.moduleDir)
            return this
        }
    
        IvyModuleHttpArtifact getIvy() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.ivy)
        }
    
        IvyModuleHttpArtifact getJar() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.jar)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/crypto/aes/cbc_ppc64x.go

    		} else {
    			cryptBlocksChain(&src[0], &dst[0], len(src), &x.b.dec[0], &x.iv[0], x.enc, int(x.b.l)/4-1)
    		}
    	}
    }
    
    func (x *cbc) SetIV(iv []byte) {
    	if len(iv) != BlockSize {
    		panic("cipher: incorrect length IV")
    	}
    	copy(x.iv[:], iv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:31 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

    import java.util.Map;
    
    public interface IvyModule extends Module {
        String getOrganisation();
        @Override
        String getModule();
        String getRevision();
    
        ModuleArtifact getIvy();
    
        ModuleArtifact getJar();
    
        TestFile getIvyFile();
    
        TestFile getJarFile();
    
        TestFile getModuleMetadataFile();
    
        /**
         * Don't publish an ivy.xml / .module for this module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

                        MetadataGraphVertex targetNode = e.getTarget();
                        targetNode.getMd().setArtifactScope(e.getScope());
                        targetNode.getMd().setWhy(e.getSource().getMd().toString());
                        visit(targetNode);
                    }
                }
            }
            // -----------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/crypto/cipher/cbc.go

    		iv = dst[:x.blockSize]
    		src = src[x.blockSize:]
    		dst = dst[x.blockSize:]
    	}
    
    	// Save the iv for the next CryptBlocks call.
    	copy(x.iv, iv)
    }
    
    func (x *cbcEncrypter) SetIV(iv []byte) {
    	if len(iv) != len(x.iv) {
    		panic("cipher: incorrect length IV")
    	}
    	copy(x.iv, iv)
    }
    
    type cbcDecrypter cbc
    
    // cbcDecAble is an interface implemented by ciphers that have a specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyJavaModule.groovy

            this.backingModule = backingModule
            this.backingModule.attributes[TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE.name] = JavaVersion.current().majorVersion
        }
    
        @Override
        ModuleArtifact getIvy() {
            backingModule.ivy
        }
    
        @Override
        ModuleArtifact getJar() {
            backingModule.jar
        }
    
        @Override
        ModuleArtifact getModuleMetadata() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/DES.java

        // Constructor, byte-array key.
        public DES( byte[] key )    {
            if( key.length == 7 ) {
                byte[] key8 = new byte[8];
                makeSMBKey( key, key8 );
                setKey( key8 );
            } else {
                setKey( key );
            }
        }
    
    
        public static void makeSMBKey(byte[] key7, byte[] key8) {
    
            int i;
    
            key8[0] = (byte) ( ( key7[0] >> 1) & 0xff);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoParamDbm.java

                    (et, vl) -> ((CrawlingInfoParam) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime");
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getKey(), (et, vl) -> ((CrawlingInfoParam) et).setKey(DfTypeUtil.toString(vl)),
                    "key");
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getValue(), (et, vl) -> ((CrawlingInfoParam) et).setValue(DfTypeUtil.toString(vl)),
                    "value");
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                        if (entry.equals(v)) { // unless it's an entry point.
                            // currently processing the entry point - it should not have any entry incident edges
                            res.getEntry().getMd().setWhy("This is a graph entry point. No links.");
                        } else {
                            // System.out.println("--->"+v.getMd().toDomainString()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top