Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for flts (0.06 sec)

  1. android/guava/src/com/google/common/collect/ObjectArrays.java

       * of the returned array is that of the specified array. If the collection fits in the specified
       * array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the
       * specified array and the size of the specified collection.
       *
       * <p>If the collection fits in the specified array with room to spare (i.e., the array has more
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 12 15:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/go/doc/exports.go

    			j++
    		}
    	}
    	return list[0:j]
    }
    
    var underscore = ast.NewIdent("_")
    
    func filterCompositeLit(lit *ast.CompositeLit, filter Filter, export bool) {
    	n := len(lit.Elts)
    	lit.Elts = filterExprList(lit.Elts, filter, export)
    	if len(lit.Elts) < n {
    		lit.Incomplete = true
    	}
    }
    
    func filterExprList(list []ast.Expr, filter Filter, export bool) []ast.Expr {
    	j := 0
    	for _, exp := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ObjectArrays.java

       * of the returned array is that of the specified array. If the collection fits in the specified
       * array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the
       * specified array and the size of the specified collection.
       *
       * <p>If the collection fits in the specified array with room to spare (i.e., the array has more
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 12 15:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

            /**
             * Returns Java runtime version such as {@code 17.0.3.1+2-LTS}.
             */
            String getRuntimeVersion();
    
            /**
             * Returns Java VM name such as {@code OpenJDK 64-Bit Server VM}.
             */
            String getJvmName();
    
            /**
             * Returns Java VM version such as {@code 17.0.3.1+2-LTS}.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    go build -x -n -o dummy.exe ./noUseOfCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=-flto
    go build -x -n -o dummy.exe ./noUseOfCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=
    
    # Second build uses CGO, so we expect to see the token present in the
    # -n output only when strange flags are used.
    go build -x -n -o dummy.exe ./usesInternalCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=-flto
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    				continue
    			}
    
    			// check if the struct contains an unkeyed field
    			allKeyValue := true
    			var suggestedFixAvailable = len(cl.Elts) == strct.NumFields()
    			var missingKeys []analysis.TextEdit
    			for i, e := range cl.Elts {
    				if _, ok := e.(*ast.KeyValueExpr); !ok {
    					allKeyValue = false
    					if i >= strct.NumFields() {
    						break
    					}
    					field := strct.Field(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. test/abi/double_nested_struct.go

    	a, b string
    }
    
    type stringPairPair struct {
    	x, y stringPair
    }
    
    // The goal of this test is to be sure that the call arg/result expander works correctly
    // for a corner case of passing a 2-nested struct that fits in registers to/from calls.
    
    //go:registerparams
    //go:noinline
    func H(spp stringPairPair) string {
    	return spp.x.a + " " + spp.x.b + " " + spp.y.a + " " + spp.y.b
    }
    
    //go:registerparams
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/gofmt/simplify.go

    		}
    
    		if eltType != nil {
    			var ktyp reflect.Value
    			if keyType != nil {
    				ktyp = reflect.ValueOf(keyType)
    			}
    			typ := reflect.ValueOf(eltType)
    			for i, x := range outer.Elts {
    				px := &outer.Elts[i]
    				// look at value of indexed/named elements
    				if t, ok := x.(*ast.KeyValueExpr); ok {
    					if keyType != nil {
    						s.simplifyLiteral(ktyp, keyType, t.Key, &t.Key)
    					}
    					x = t.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. test/abi/double_nested_addressed_struct.go

    	a, b string
    }
    
    type stringPairPair struct {
    	x, y stringPair
    }
    
    // The goal of this test is to be sure that the call arg/result expander works correctly
    // for a corner case of passing a 2-nested struct that fits in registers to/from calls.
    // AND, the struct has its address taken.
    
    //go:registerparams
    //go:noinline
    func H(spp stringPairPair) string {
    	F(&spp)
    	return spp.x.a + " " + spp.x.b + " " + spp.y.a + " " + spp.y.b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. test/asmhdr.dir/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "unsafe"
    
    const (
    	smallInt = 42
    
    	// For bigInt, we use a value that's too big for an int64, but still
    	// fits in uint64. go/constant uses a different representation for
    	// values larger than int64, but the cmd/asm parser can't parse
    	// anything bigger than a uint64.
    	bigInt = 0xffffffffffffffff
    
    	stringVal = "test"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 10 21:27:19 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top