Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 144 for Largest (0.13 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

        private final boolean target;
    
        Bounds(Type[] bounds, boolean target) {
          this.bounds = bounds;
          this.target = target;
        }
    
        boolean isSubtypeOf(Type supertype) {
          for (Type bound : bounds) {
            if (of(bound).isSubtypeOf(supertype) == target) {
              return target;
            }
          }
          return !target;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeToken.java

        private final boolean target;
    
        Bounds(Type[] bounds, boolean target) {
          this.bounds = bounds;
          this.target = target;
        }
    
        boolean isSubtypeOf(Type supertype) {
          for (Type bound : bounds) {
            if (of(bound).isSubtypeOf(supertype) == target) {
              return target;
            }
          }
          return !target;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    			switch p.To.Type {
    			case obj.TYPE_BRANCH:
    				p.To.Type, p.To.Offset = obj.TYPE_CONST, p.To.Target().Pc-p.Pc
    			case obj.TYPE_MEM:
    				panic("unhandled type")
    			}
    
    		case AJAL:
    			// Linker will handle the intersymbol case and trampolines.
    			if p.To.Target() != nil {
    				p.To.Type, p.To.Offset = obj.TYPE_CONST, p.To.Target().Pc-p.Pc
    			}
    
    		case AAUIPC:
    			if p.From.Type == obj.TYPE_BRANCH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. src/testing/testing.go

    // identified through fuzzing.
    //
    // The function passed to (*F).Fuzz within the fuzz test is considered the fuzz
    // target. A fuzz target must accept a *T parameter, followed by one or more
    // parameters for random inputs. The types of arguments passed to (*F).Add must
    // be identical to the types of these parameters. The fuzz target may signal
    // that it's found a problem the same way tests do: by calling T.Fail (or any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    			// generate extra passes putting branches around jmps to fix. this is rare.
    			if o.type_ == 6 && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    
    				// On loong64, the immediate value field of the conditional branch instructions
    				// BFPT and BFPT is 21 bits, and the others are 16 bits. The jump target address
    				// is to logically shift the immediate value in the instruction code to the left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		Code:           "XMinioAdminRemoteIdenticalToSource",
    		Description:    "The remote target cannot be identical to source",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketRemoteAlreadyExists: {
    		Code:           "XMinioAdminBucketRemoteAlreadyExists",
    		Description:    "The remote target already exists",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketRemoteLabelInUse: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  7. src/encoding/json/decode_test.go

    			return &v
    		},
    	}}
    
    	for _, tt := range tests {
    		for _, target := range targets {
    			t.Run(target.Name+"-"+tt.Name, func(t *testing.T) {
    				err := Unmarshal([]byte(tt.data), target.newValue())
    				if !tt.errMaxDepth {
    					if err != nil {
    						t.Errorf("%s: %s: Unmarshal error: %v", tt.Where, target.Where, err)
    					}
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal_test.go

    }, {
    	desc: "proc instruction",
    	toks: []Token{
    		ProcInst{"Target", []byte("Instruction")},
    	},
    	want: `<?Target Instruction?>`,
    }, {
    	desc: "proc instruction with empty target",
    	toks: []Token{
    		ProcInst{"", []byte("Instruction")},
    	},
    	err: "xml: EncodeToken of ProcInst with invalid Target",
    }, {
    	desc: "proc instruction with bad content",
    	toks: []Token{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    func Test(t *testing.T) {
    	if *target != "" {
    		// When -target is set, propagate it to GOOS/GOARCH in our environment
    		// so that all commands run with the target GOOS/GOARCH.
    		//
    		// We do this before even calling "go env", because GOOS/GOARCH can
    		// affect other settings we get from go env (notably CGO_ENABLED).
    		goos, goarch, ok := strings.Cut(*target, "/")
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                - target *must* have a child
                - Having "b" depend directly on "in-conflict" does not produce the error, needs to go through "b-child"
             */
    
            mavenRepo.module("org", "target-child", "1.0").publish()
            mavenRepo.module("org", "target", "1.0").dependsOn("org", "target-child", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top