Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 223 for Identical (0.38 sec)

  1. src/database/sql/driver/driver.go

    }
    
    // IsolationLevel is the transaction isolation level stored in [TxOptions].
    //
    // This type should be considered identical to [database/sql.IsolationLevel] along
    // with any values defined on it.
    type IsolationLevel int
    
    // TxOptions holds the transaction options.
    //
    // This type should be considered identical to [database/sql.TxOptions].
    type TxOptions struct {
    	Isolation IsolationLevel
    	ReadOnly  bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/value.go

    		return
    	}
    	if v.InCache {
    		v.Block.Func.unCache(v)
    	}
    	v.Op = OpCopy
    	v.resetArgs()
    	v.AddArg(a)
    	v.AuxInt = 0
    	v.Aux = nil
    	v.Type = a.Type
    }
    
    // copyInto makes a new value identical to v and adds it to the end of b.
    // unlike copyIntoWithXPos this does not check for v.Pos being a statement.
    func (v *Value) copyInto(b *Block) *Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    		if name.Value == "v" {
    			v = obj
    			break
    		}
    	}
    	if v == nil {
    		t.Fatal("variable v not found")
    	}
    
    	// type of v and T must be pointer-identical
    	if v.Type() != T {
    		t.Fatalf("types of v and T are not pointer-identical: %p != %p", v.Type().(*TypeParam), T)
    	}
    }
    
    func TestIssue44410(t *testing.T) {
    	const src = `
    package p
    
    type A = []int
    type S struct{ A }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
            // (identical properties later in the command line override earlier ones)
    
            return ImmutableList.<String>builder()
                .addAll(args)
                .addAll(getAllImmutableJvmArgs())
                .build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    // limitations under the License.
    
    [[version_alignment]]
    = Aligning dependency versions
    
    Dependency version alignment allows different modules belonging to the same logical group (a _platform_) to have identical versions in a dependency graph.
    
    == Handling inconsistent module versions
    
    Gradle supports aligning versions of modules which belong to the same "platform".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. common/config/.golangci.yml

          - name: call-to-gc
          - name: duplicated-imports
          - name: string-of-int
          - name: defer
            arguments:
              - - "call-chain"
          - name: unconditional-recursion
          - name: identical-branches
            # the following rules can be enabled in the future
            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
            # - name: get-return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stmt.go

    		if val := goVal(v.val); val != nil {
    			// look for duplicate types for a given value
    			// (quadratic algorithm, but these lists tend to be very short)
    			for _, vt := range seen[val] {
    				if Identical(v.typ, vt.typ) {
    					err := check.newError(DuplicateCase)
    					err.addf(&v, "duplicate case %s in expression switch", &v)
    					err.addf(vt.pos, "previous case")
    					err.report()
    					continue L
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/encoding/base64/base64.go

    		case e.decodeMap[encoder[i]] != invalidIndex:
    			panic("encoding alphabet includes duplicate symbols")
    		}
    		e.decodeMap[encoder[i]] = uint8(i)
    	}
    	return e
    }
    
    // WithPadding creates a new encoding identical to enc except
    // with a specified padding character, or [NoPadding] to disable padding.
    // The padding character must not be '\r' or '\n',
    // must not be contained in the encoding's alphabet,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// permissible character tests are all omitted. It also prevents the ToASCII
    	// call from salvaging an invalid IDN, when possible. As a result it may be
    	// possible to have two IDNs that appear identical to the user where the
    	// ASCII-only version causes an error downstream whereas the non-ASCII
    	// version does not.
    	// Note that for correct ASCII IDNs ToASCII will only do considerably more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            skipped mainCompileTask
            executedAndNotSkipped ":linkMainExecutable"
            executedAndNotSkipped ":mainExecutable"
    
            and:
            executable.assertExists()
    
            // Identical binaries produced on mingw and gcc cygwin
            if (!(toolChain.id in ["mingw", "gcccygwin"])) {
                executable.assertHasChangedSince(snapshot)
            }
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top