Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for internally (0.19 sec)

  1. docs/en/docs/benchmarks.md

    But when checking benchmarks and comparisons you should keep the following in mind.
    
    ## Benchmarks and speed
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/continuous/ContinuousIntegrationTestFixtureTest.groovy

                return executer
            }
        }
    
        private GradleHandle setupStubs(AbstractContinuousIntegrationTest sampleTest) {
            sampleTest.results = [] // fields are null for some reason, perhaps Spock internally modifies constructors
            def gradleHandle = Stub(GradleHandle)
            gradleExecuter.withStdinPipe() >> gradleExecuter
            gradleExecuter.withTasks(_) >> gradleExecuter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/restored_resource.h

    class RestoredResource : TensorHandleConvertible {
     public:
      // Note(bmzhao): RestoredResource stores non-owning pointers to its associated
      // functions because SavedModel internally owns all functions and objects in
      // the RevivedObjects struct (which owns all functions). One alternative would
      // be to have RevivedObjects store shared_ptr<TFConcreteFunction> instead, and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.build;
    
    import org.gradle.api.artifacts.component.BuildIdentifier;
    import org.gradle.api.internal.BuildDefinition;
    import org.gradle.internal.buildtree.NestedBuildTree;
    import org.gradle.internal.scopeids.id.BuildInvocationScopeId;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.util.Path;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NtlmSsp.java

    import jcifs.smb1.ntlmssp.Type2Message;
    import jcifs.smb1.ntlmssp.Type3Message;
    import jcifs.smb1.smb1.NtlmPasswordAuthentication;
    import jcifs.smb1.util.Base64;
    
    /**
     * This class is used internally by <tt>NtlmHttpFilter</tt>,
     * <tt>NtlmServlet</tt>, and <tt>NetworkExplorer</tt> to negiotiate password
     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  6. src/internal/poll/fd.go

    var TestHookDidWritev = func(wrote int) {}
    
    // String is an internal string definition for methods/functions
    // that is not intended for use outside the standard libraries.
    //
    // Other packages in std that import internal/poll and have some
    // exported APIs (now we've got some in net.rawConn) which are only used
    // internally and are not intended to be used outside the standard libraries,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/mvs.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modload
    
    import (
    	"context"
    	"errors"
    	"os"
    	"sort"
    
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modfetch/codehost"
    
    	"golang.org/x/mod/module"
    )
    
    // cmpVersion implements the comparison for versions in the module loader.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/fiat/p256.go

    import (
    	"crypto/subtle"
    	"errors"
    )
    
    // P256Element is an integer modulo 2^256 - 2^224 + 2^192 + 2^96 - 1.
    //
    // The zero value is a valid zero element.
    type P256Element struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x p256MontgomeryDomainFieldElement
    }
    
    const p256ElementLen = 32
    
    type p256UntypedFieldElement = [4]uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. src/syscall/creds_test.go

    			}
    		}
    
    		ucred.Pid = int32(os.Getpid())
    		ucred.Uid = uint32(os.Getuid())
    		ucred.Gid = uint32(os.Getgid())
    		oob := syscall.UnixCredentials(&ucred)
    
    		// On SOCK_STREAM, this is internally going to send a dummy byte
    		n, oobn, err := cli.(*net.UnixConn).WriteMsgUnix(nil, oob, nil)
    		if err != nil {
    			t.Fatalf("WriteMsgUnix: %v", err)
    		}
    		if n != 0 {
    			t.Fatalf("WriteMsgUnix n = %d, want 0", n)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 02:43:05 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FilterChain.java

                            original.close();
                        }
                        StringWriter writer = new StringWriter();
                        // SimpleTemplateEngine expects to be able to mutate the map internally.
                        template.make(new LinkedHashMap<>(properties)).writeTo(writer);
                        return new StringReader(writer.toString());
                    } catch (MissingPropertyException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top