Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 518 for DerivedT (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_extended_nonce.go

    // only used once as an AES-GCM key with a random 12 byte nonce.  This avoids any concerns around
    // cryptographic wear out (by either number of encryptions or the amount of data being encrypted).
    // Speaking on the cryptographic safety, the limit on the number of operations that can be preformed
    // with a single seed with derived keys and randomly generated nonces is not practically reachable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

         *
         * In a class scope, a symbol may be derived from symbols declared in super classes. For example, consider
         *
         * ```
         * public interface  A<T> {
         *   public fun foo(t:T)
         * }
         *
         * public interface  B: A<String> {
         * }
         * ```
         *
         * In the class scope of `B`, there is a callable symbol `foo` that takes a `String`. This symbol is derived from the original symbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerDefaultTestKitDirIntegrationTest.groovy

                import org.gradle.testkit.runner.internal.DefaultGradleRunner
                import spock.lang.Specification
    
                class Test extends Specification {
                    def "default test kit provider value is derived from system property"() {
                        when:
                        def runner = GradleRunner.create() as DefaultGradleRunner
                        def dir = runner.testKitDirProvider.dir
                        then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // Type attributes
    
    // A derived attribute that returns the size of `idx`-th ODS-declared variadic
    // operand.
    class TF_DerivedOperandSizeAttr<int idx> : DerivedAttr<
      "size_t",
      "auto range = getODSOperands(" # idx # ");\n"
      "return std::distance(range.begin(), range.end());",
      [{ $_builder.getI64IntegerAttr($_self) }]>;
    
    // A derived attribute that returns the element type of `idx`-th ODS-declared
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/cycles5a.go

    }
    
    type UnpairedVersion interface {
    	Version
    }
    
    var _ Constraint = UnpairedVersion(nil)
    
    
    // derived test case from issue #21804
    
    type (
    	_ interface{ m(B1) }
    	A1 interface{ a(D1) }
    	B1 interface{ A1 }
    	C1 interface{ B1 }
    	D1 interface{ C1 }
    )
    
    var _ A1 = C1(nil)
    
    
    // derived test case from issue #22701
    
    func F(x I4) interface{} {
    	return x.Method()
    }
    
    type Unused interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sync/errgroup/errgroup.go

    	errOnce sync.Once
    	err     error
    }
    
    func (g *Group) done() {
    	if g.sem != nil {
    		<-g.sem
    	}
    	g.wg.Done()
    }
    
    // WithContext returns a new Group and an associated Context derived from ctx.
    //
    // The derived Context is canceled the first time a function passed to Go
    // returns a non-nil error or the first time Wait returns, whichever occurs
    // first.
    func WithContext(ctx context.Context) (*Group, context.Context) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/html/template/escape.go

    	// output[templateName] is the output context for a templateName that
    	// has been mangled to include its input context.
    	output map[string]context
    	// derived[c.mangle(name)] maps to a template derived from the template
    	// named name templateName for the start context c.
    	derived map[string]*template.Template
    	// called[templateName] is a set of called mangled template names.
    	called map[string]bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/cycles5.go

    }
    
    type UnpairedVersion interface {
    	Version
    }
    
    var _ Constraint = UnpairedVersion(nil)
    
    
    // derived test case from issue #21804
    
    type (
    	_ interface{ m(B1) }
    	A1 interface{ a(D1) }
    	B1 interface{ A1 }
    	C1 interface{ B1 }
    	D1 interface{ C1 }
    )
    
    var _ A1 = C1(nil)
    
    
    // derived test case from issue #22701
    
    func F(x I4) interface{} {
    	return x.Method()
    }
    
    type Unused interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/JavaEcosystemVariantDerivationStrategy.java

                        componentId.getGroup(),
                        componentId.getModule(),
                        componentId.getVersion()
                ), enforced ? "-derived-enforced-platform" : "-derived-platform")
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_issue47650.txt

    [short] skip 'creates and uses a git repository'
    [!git] skip
    
    env GOPRIVATE=vcs-test.golang.org
    
    # If we request a package in a subdirectory of a module by commit hash, we
    # successfully resolve it to a pseudo-version derived from a tag on the parent
    # commit.
    cp go.mod go.mod.orig
    go get -x vcs-test.golang.org/git/issue47650.git/cmd/issue47650@21535ef346c3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top