Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for aligned (0.14 sec)

  1. cmd/bitrot-streaming.go

    		})
    		return closer.Close()
    	}
    	return nil
    }
    
    func (b *streamingBitrotReader) ReadAt(buf []byte, offset int64) (int, error) {
    	var err error
    	if offset%b.shardSize != 0 {
    		// Offset should always be aligned to b.shardSize
    		// Can never happen unless there are programmer bugs
    		return 0, errUnexpected
    	}
    	if b.rc == nil {
    		// For the first ReadAt() call we need to open the stream for reading.
    		b.currOffset = offset
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/envoyfilter.go

    	Priority         int32
    	creationTime     time.Time
    }
    
    // EnvoyFilterConfigPatchWrapper is a wrapper over the EnvoyFilter ConfigPatch api object
    // fields are ordered such that this struct is aligned
    type EnvoyFilterConfigPatchWrapper struct {
    	Value     proto.Message
    	Match     *networking.EnvoyFilter_EnvoyConfigObjectMatch
    	ApplyTo   networking.EnvoyFilter_ApplyTo
    	Operation networking.EnvoyFilter_Patch_Operation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/crypto/des/block.go

    	}
    }
    
    // Expand 48-bit input to 64-bit, with each 6-bit block padded by extra two bits at the top.
    // By doing so, we can have the input blocks (four bits each), and the key blocks (six bits each) well-aligned without
    // extra shifts/rotations for alignments.
    func unpack(x uint64) uint64 {
    	return ((x>>(6*1))&0xff)<<(8*0) |
    		((x>>(6*3))&0xff)<<(8*1) |
    		((x>>(6*5))&0xff)<<(8*2) |
    		((x>>(6*7))&0xff)<<(8*3) |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/main/resources/footer.html

            }
            return currentChapterFileName;
        }
    
        // The media query indicating that a device is a desktop.
        // The `min-width: 64rem` definition should be aligned to
        // the one of `css/manual.css`.
        const desktopMediaQuery = window.matchMedia("screen and (min-width: 64rem)");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/sync/atomic/type.go

    // Lock is a no-op used by -copylocks checker from `go vet`.
    func (*noCopy) Lock()   {}
    func (*noCopy) Unlock() {}
    
    // align64 may be added to structs that must be 64-bit aligned.
    // This struct is recognized by a special case in the compiler
    // and will not work if copied to any other package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/alias.go

    // gotypesalias setting with the GODEBUG environment variable.
    // For gotypesalias=1, alias declarations produce an Alias type.
    // Otherwise, the alias information is only in the type name,
    // which points directly to the actual (aliased) type.
    type Alias struct {
    	obj     *TypeName      // corresponding declared alias object
    	orig    *Alias         // original, uninstantiated alias
    	tparams *TypeParamList // type parameters, or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/go/types/alias.go

    // gotypesalias setting with the GODEBUG environment variable.
    // For gotypesalias=1, alias declarations produce an Alias type.
    // Otherwise, the alias information is only in the type name,
    // which points directly to the actual (aliased) type.
    type Alias struct {
    	obj     *TypeName      // corresponding declared alias object
    	orig    *Alias         // original, uninstantiated alias
    	tparams *TypeParamList // type parameters, or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over java extension"                | "other"  | null           | "current"         | "other"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

          py_function_lib_;
    
      // Path to the pre-calibrated SavedModel.
      std::string src_saved_model_path_;
    
      // Function alias mapping for pre-calibrated SavedModel. Used to preserve
      // aliased functions.
      absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases_;
    
      // Tags to identify the MetaGraphDef to load from a SavedModel.
      const std::unordered_set<std::string> tags_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue67547.go

    	a = p // ERRORx `cannot assign struct{} \(in P\) to (A|\[\]int)`
    	_ = a
    }
    
    func _[P any]() {
    	type A = P
    	var x A
    	// keep "constrained by" for aliased type parameters in error messages
    	var _ int = x // ERRORx `cannot use x \(variable of type (A|P) constrained by any\) as int value in variable declaration`
    }
    
    // Test case for go.dev/issue/67540.
    func _() {
    	type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top