Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 481 for Seal (0.03 sec)

  1. src/math/big/arith_386.s

    // func mulAddVWW(z, x []Word, y, r Word) (c Word)
    TEXT ·mulAddVWW(SB),NOSPLIT,$0
    	MOVL z+0(FP), DI
    	MOVL x+12(FP), SI
    	MOVL y+24(FP), BP
    	MOVL r+28(FP), CX	// c = r
    	MOVL z_len+4(FP), BX
    	LEAL (DI)(BX*4), DI
    	LEAL (SI)(BX*4), SI
    	NEGL BX			// i = -n
    	JMP E5
    
    L5:	MOVL (SI)(BX*4), AX
    	MULL BP
    	ADDL CX, AX
    	ADCL $0, DX
    	MOVL AX, (DI)(BX*4)
    	MOVL DX, CX
    	ADDL $1, BX		// i++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. .github/workflows/multipart/migrate.sh

    docker-compose -f docker-compose-site2.yaml up -d
    
    ./mc ready site1/
    ./mc ready site2/
    
    for i in $(seq 1 10); do
    	# mc admin heal -r --remove when used against a LB endpoint
    	# behaves flaky, let this run 10 times before giving up
    	./mc admin heal -r --remove --json site1/ 2>&1 >/dev/null
    	./mc admin heal -r --remove --json site2/ 2>&1 >/dev/null
    done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func_test.go

    			sym: "Baz",
    		},
    		{
    			in:  "memeqbody",
    			pkg: "",
    			sym: "memeqbody",
    		},
    		{
    			in:  `example%2ecom.Bar`,
    			pkg: `example%2ecom`,
    			sym: "Bar",
    		},
    		{
    			// Not a real generated symbol name, but easier to catch the general parameter form.
    			in:  `foo.Bar[sync/atomic.Uint64]`,
    			pkg: `foo`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			in:  `example%2ecom.Bar[sync/atomic.Uint64]`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/database/sql/doc.txt

    * Make type casting/conversions consistent between all drivers. To
      achieve this, most of the conversions are done in the sql package,
      not in each driver. The drivers then only have to deal with a
      smaller set of types.
    
    * Be flexible with type conversions, but be paranoid about silent
      truncation or other loss of precision.
    
    * Handle concurrency well.  Users shouldn't need to care about the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/ipvs_linux.go

    	if err != nil {
    		return fmt.Errorf("could not convert local virtual server to IPVS service: %w", err)
    	}
    	dst, err := toIPVSDestination(rs)
    	if err != nil {
    		return fmt.Errorf("could not convert local real server to IPVS destination: %w", err)
    	}
    	runner.mu.Lock()
    	defer runner.mu.Unlock()
    	return runner.ipvsHandle.NewDestination(svc, dst)
    }
    
    // DeleteRealServer is part of ipvs.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-library/module-disabled/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-library/module/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gotoolchain_net.txt

    env GOSUMDB=$oldsumdb' http://badurl'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    ! go version
    ! stderr downloading
    stderr 'panic: use of network' # test catches network access
    env GOSUMDB=$oldsumdb
    
    # Test a real GOTOOLCHAIN
    [short] skip
    [!net:golang.org] skip
    [!net:sum.golang.org] skip
    [!GOOS:darwin] [!GOOS:windows] [!GOOS:linux] skip
    [!GOARCH:amd64] [!GOARCH:arm64] skip
    
    env GOPROXY=
    [go-builder] env GOSUMDB=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 17:16:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-library/module/kotlin/src/main/java/module-info.java

    module org.gradle.sample.lib {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 212 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRealProjectsDependencyResolveIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'testproject'
            """
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "resolves dependencies on real projects"() {
            // Real but ancient projects
            // Hibernate core brings in conflicts, exclusions and root poms
            // Add a direct dependency on an earlier version of commons-collection than required by hibernate core
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top