Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for expandable (0.31 sec)

  1. README.md

    * Batch Insert, FindInBatches, Find To Map
    * SQL Builder, Upsert, Locking, Optimizer/Index/Comment Hints, NamedArg, Search/Update/Create with SQL Expr
    * Composite Primary Key
    * Auto Migrations
    * Logger
    * Extendable, flexible plugin API: Database Resolver (Multiple Databases, Read/Write Splitting) / Prometheus…
    * Every feature comes with tests
    * Developer Friendly
    
    ## Getting Started
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// giving 00000110b (0x06) and 00011111b (0x1f).
    	// [1] http://csrc.nist.gov/publications/drafts/fips-202/fips_202_draft.pdf
    	//     "Draft FIPS 202: SHA-3 Standard: Permutation-Based Hash and
    	//      Extendable-Output Functions (May 2014)"
    	dsbyte byte
    
    	i, n    int // storage[i:n] is the buffer, i is only used while squeezing
    	storage [maxRate]byte
    
    	// Specific to SHA-3 and SHAKE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_tls13.go

    		confTranscript.Write(hs.serverHello.original[:30])
    		confTranscript.Write(make([]byte, 8))
    		confTranscript.Write(hs.serverHello.original[38:])
    		acceptConfirmation := hs.suite.expandLabel(
    			hs.suite.extract(hs.echContext.innerHello.random, nil),
    			"ech accept confirmation",
    			confTranscript.Sum(nil),
    			8,
    		)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    .Debugging dependency conflicts with build scans
    image::troubleshooting-dependency-management-build-scan.png[]
    
    The link:https://scans.gradle.com/s/sample/troubleshooting-userguide/dependencies?expandAll&filters=WzFd&toggled=W1swXSxbMF0sWzAsMF0sWzAsMV1d[actual build scan] with filtering criteria is available for exploration.
    
    [[sec:troubleshooting_performance]]
    == Troubleshooting slow builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pcln.go

    		// when we save the size.
    		filename := cu.FileTable[i]
    		if _, ok := fileOffsets[filename]; !ok {
    			fileOffsets[filename] = uint32(fileSize)
    			fileSize += int64(len(expandFile(filename)) + 1) // NULL terminate
    		}
    
    		// Find the maximum file index we've seen.
    		if cuEntries[cu.PclnIndex] < i+1 {
    			cuEntries[cu.PclnIndex] = i + 1 // Store max + 1
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_tls13.go

    		return errors.New("tls: internal error: unknown cipher suite")
    	}
    	// ticket_nonce, which must be unique per connection, is always left at
    	// zero because we only ever send one ticket per connection.
    	psk := suite.expandLabel(c.resumptionSecret, "resumption",
    		nil, suite.hash.Size())
    
    	m := new(newSessionTicketMsgTLS13)
    
    	state := c.sessionState()
    	state.secret = psk
    	state.EarlyData = earlyData
    	state.Extra = extra
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. test-site/activator-launch-1.3.2.jar

    filter(java.util.Collection, Filter); static void <clinit>(); } org/apache/ivy/util/extendable/ExtendableItem.class package org.apache.ivy.util.extendable; public abstract interface ExtendableItem { public abstract String getExtraAttribute(String); public abstract java.util.Map getAttributes(); public abstract java.util.Map getExtraAttributes(); public abstract java.util.Map getQualifiedExtraAtt(); } org/apache/ivy/util/extendable/UnmodifiableExtendab.class package org.apache.ivy.util.extendable; public synchronized...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

    import org.apache.ivy.plugins.matcher.PatternMatcher;
    import org.apache.ivy.plugins.namespace.Namespace;
    import org.apache.ivy.plugins.parser.xml.XmlModuleDescriptorParser;
    import org.apache.ivy.util.extendable.DefaultExtendableItem;
    import org.apache.ivy.util.url.URLHandlerRegistry;
    import org.gradle.api.GradleException;
    import org.gradle.api.artifacts.component.ModuleComponentIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		// symbol name here?
    		sn := d.ldr.SymName(rsym)
    		tn := sn[len(dwarf.InfoPrefix):]
    		ts := d.ldr.Lookup("type:"+tn, 0)
    		d.defgotype(ts)
    	}
    }
    
    func expandFile(fname string) string {
    	fname = strings.TrimPrefix(fname, src.FileSymPrefix)
    	return expandGoroot(fname)
    }
    
    // writeDirFileTables emits the portion of the DWARF line table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    il/Expand.class package org.codehaus.plexus.util; public synchronized class Expand { private java.io.File dest; private java.io.File source; private boolean overwrite; public void Expand(); public void execute() throws Exception; protected void expandFile(java.io.File, java.io.File) throws Exception; protected void extractFile(java.io.File, java.io.File, java.io.InputStream, String, java.util.Date, boolean) throws Exception; public void setDest(java.io.File); public void setSrc(java.io.File); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
Back to top