Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for aligned (0.13 sec)

  1. src/cmd/cgo/gcc.go

    		}
    		t.Go = c.int8
    		t.Align = 1
    
    	case *dwarf.EnumType:
    		if t.Align = t.Size; t.Align >= c.ptrSize {
    			t.Align = c.ptrSize
    		}
    		t.C.Set("enum " + dt.EnumName)
    		signed := 0
    		t.EnumValues = make(map[string]int64)
    		for _, ev := range dt.Val {
    			t.EnumValues[ev.Name] = ev.Val
    			if ev.Val < 0 {
    				signed = signedDelta
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    	a2.GCD(X, Y, a2, b2) // result is same as 1st argument
    	if a2.Cmp(d) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got d = %s, want %s", x, y, a, b, a2, d)
    	}
    	if x != nil && X.Cmp(x) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got x = %s, want %s", x, y, a, b, X, x)
    	}
    	if y != nil && Y.Cmp(y) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got y = %s, want %s", x, y, a, b, Y, y)
    	}
    
    	a2 = new(Int).Set(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    With the `mc` tool, the configuration is very simple to add. Let us say that the MinIO server is aliased as `myminio` in our mc configuration. Execute the following:
    
    ```
    mc mb myminio/images
    mc event add  myminio/images arn:minio:sqs::1:elasticsearch --suffix .jpg
    mc event list myminio/images
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. hack/tools/go.sum

    github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0/go.mod h1:66R6K6P6VWk9I95jvqGxkqJxVWGFy9XlDwLwVz1RCFg=
    github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca h1:kNY3/svz5T29MYHubXix4aDDuE3RWHkPvopM/EDv/MA=
    github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca/go.mod h1:tvlJhZqDe4LMs4ZHD0oMUlt9G2LWuDGoisJTBzLMV9o=
    github.com/golangci/misspell v0.4.1 h1:+y73iSicVy2PqyX7kmUefHusENlrP9YwuHZHPLGQj/g=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    	// activeBindAddrs Represents addresses we want on the defaultDummyDevice after this round of sync
    	activeBindAddrs := sets.New[string]()
    	// alreadyBoundAddrs Represents addresses currently assigned to the dummy interface
    	alreadyBoundAddrs, err := proxier.netlinkHandle.GetLocalAddresses(defaultDummyDevice)
    	if err != nil {
    		proxier.logger.Error(err, "Error listing addresses binded to dummy interface")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    // etc. The sidecar scopes are precomputed in the initSidecarContext
    // function based on the Sidecar API objects in each namespace. If there is
    // no sidecar api object, a default sidecarscope is assigned to the
    // namespace which enables connectivity to all services in the mesh.
    //
    // Callers can check if the sidecarScope is from user generated object or not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        // receiver is needed by the resolver. The dispatch and extension receivers are only assigned after resolution when a
                        // candidate is selected.
                        source = ******@****.***
                        annotations.addAll(******@****.***tions)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        /**
         * Finds constructors with a given [targetClassName] available within the [scope], including SAM constructors
         * (which are not explicitly declared in the class).
         *
         * Includes type-aliased constructors too if typealias confirms to the [targetClassName].
         *
         * Do not confuse with constructors **declared** in the scope (see [FirScope.processDeclaredConstructors]).
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	"aN": {"&=", 2, precAssign},
    	"aS": {"=", 2, precAssign},
    	"aa": {"&&", 2, precLogicalAnd},
    	"ad": {"&", 1, precUnary},
    	"an": {"&", 2, precAnd},
    	"at": {"alignof ", 1, precUnary},
    	"aw": {"co_await ", 1, precPrimary},
    	"az": {"alignof ", 1, precUnary},
    	"cc": {"const_cast", 2, precPostfix},
    	"cl": {"()", 2, precPostfix},
    	// cp is not in the ABI but is used by clang "when the call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/CharMatcher.java

     * <a href="http://www.unicode.org/glossary/#supplementary_code_point">supplementary Unicode code
     * points</a> in the range {@code 0x10000} to {@code 0x10FFFF} which includes the majority of
     * assigned characters, including important CJK characters and emoji.
     *
     * <p>Supplementary characters are <a
     * href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html#supplementary">encoded
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top