Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 364 for isDependent (0.16 sec)

  1. src/cmd/asm/internal/asm/pseudo_test.go

    		allowABI bool
    		tests    []errtest
    	}{
    		{
    			allowABI: false,
    			tests:    nonRuntimeTests,
    		},
    		{
    			allowABI: true,
    			tests:    runtimeTests,
    		},
    	}
    
    	// Note these errors should be independent of the architecture.
    	// Just run the test with amd64.
    	parser := newParser("amd64")
    	var buf strings.Builder
    	parser.errorWriter = &buf
    
    	for _, cat := range testcats {
    		for _, test := range cat.tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/hkdf/hkdf.go

    package hkdf // import "golang.org/x/crypto/hkdf"
    
    import (
    	"crypto/hmac"
    	"errors"
    	"hash"
    	"io"
    )
    
    // Extract generates a pseudorandom key for use with Expand from an input secret
    // and an optional independent salt.
    //
    // Only use this function if you need to reuse the extracted key with multiple
    // Expand invocations and different context values. Most common scenarios,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Optional;
    
    /**
     * Relativizes paths relative to a set of source directories in order to create a platform-independent mapping
     * from source file to class file.
     */
    @NonNullApi
    public class CompilationSourceDirs {
        private static final Logger LOG = LoggerFactory.getLogger(CompilationSourceDirs.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.h

    // originally implemented quantization. As such, utilities here enforce
    // opinions taken by that codebase (vs providing any amount of genericity).
    //
    // Specifically, it combines the following concerns, each of which would be
    // independent variables in a more generic setup:
    //   - numBits and isSigned imply storage data type (uint8, int8, int16)
    //   - numBits < 8 is promoted to uint8 or int8
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemDiagnosticsFactoryTest.groovy

            diagnostics4.stack.empty
    
            def diagnostics5 = stream.forCurrentCaller(supplier)
            diagnostics5.exception == null
            diagnostics5.stack.empty
        }
    
        def "each stream has an independent stack trace limit"() {
            def stream1 = factory.newStream()
            def stream2 = factory.newStream()
    
            given:
            stream1.forCurrentCaller()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/go/types/version.go

    	if !check.allowVersion(at, v) {
    		check.versionErrorf(at, v, format, args...)
    		return false
    	}
    	return true
    }
    
    // TODO(gri) Consider a more direct (position-independent) mechanism
    //           to identify which file we're in so that version checks
    //           work correctly in the absence of correct position info.
    
    // fileFor returns the *ast.File which contains the position pos.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         *
         * @param url The base URL.
         */
        @Override
        void setUrl(Object url);
    
        /**
         * Adds an independent pattern that will be used to locate artifact files in this repository. This pattern will be used to locate ivy files as well, unless a specific
         * ivy pattern is supplied via {@link #ivyPattern(String)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

            then:
            eclipseModel.projectNatures.collect { it.id } == ['nature.a', 'nature.b']
        }
    
        def "nature list independent from project hierarchy"() {
            setup:
            project.eclipse.project.natures = ['nature.for.root']
            child1.eclipse.project.natures = ['nature.for.child1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/lockedfile/internal/filelock/filelock.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package filelock provides a platform-independent API for advisory file
    // locking. Calls to functions in this package on platforms that do not support
    // advisory locks will return errors for which IsNotSupported returns true.
    package filelock
    
    import (
    	"errors"
    	"io/fs"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/sql-databases.md

    Common ORMs are for example: Django-ORM (part of the Django framework), SQLAlchemy ORM (part of SQLAlchemy, independent of framework) and Peewee (independent of framework), among others.
    
    Here we will see how to work with **SQLAlchemy ORM**.
    
    In a similar way you could use any other ORM.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top