Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 129 for excluding (0.28 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                    // queuing the transforms for execution
                    // The problem can potentially also be triggered by including many direct dependencies so that the queued transforms start to execute before the main thread sees the second transform
                    componentFilter { it instanceof ModuleComponentIdentifier && it.module != 'test' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    //
    // This was originally based on tcmalloc, but has diverged quite a bit.
    // http://goog-perftools.sourceforge.net/doc/tcmalloc.html
    
    // The main allocator works in runs of pages.
    // Small allocation sizes (up to and including 32 kB) are
    // rounded to one of about 70 size classes, each of which
    // has its own free set of objects of exactly that size.
    // Any free page of memory can be split into a set of objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <p>Resolves a file path relative to the project directory of this project. This method converts the supplied path
         * based on its type:</p>
         *
         * <ul>
         *
         * <li>A {@link CharSequence}, including {@link String} or {@link groovy.lang.GString}. Interpreted relative to the project directory. A string that starts with {@code file:} is treated as a file URL.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    	}
    
    	r.loadPackages(ctx, []string{"all"}, findPackage)
    
    	// Since we built up the candidate lists concurrently, they may be in a
    	// nondeterministic order. We want 'go get' to be fully deterministic,
    	// including in which errors it chooses to report, so sort the candidates
    	// into a deterministic-but-arbitrary order.
    	for _, q := range r.patternAllQueries {
    		sort.Slice(q.candidates, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    // Adds a copy of function `func` and optionally its gradient function `grad`
    // to `g`. Once `func`/`grad` is added to `g`, it can be called by creating
    // an operation using the function's name.
    // Any changes to `func`/`grad` (including deleting it) done after this method
    // returns, won't affect the copy of `func`/`grad` in `g`.
    // If `func` or `grad` are already in `g`, TF_GraphCopyFunction has no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	MOVQ	BX, -8(DI)  // "push" return PC on the g stack
    	// Gather our arguments into registers.
    	MOVQ	fn+0(FP), BX
    	MOVQ	frame+8(FP), CX
    	MOVQ	ctxt+16(FP), DX
    	// Compute the size of the frame, including return PC and, if
    	// GOEXPERIMENT=framepointer, the saved base pointer
    	LEAQ	fn+0(FP), AX
    	SUBQ	SP, AX   // AX is our actual frame size
    	SUBQ	AX, DI   // Allocate the same frame size on the g stack
    	MOVQ	DI, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func Getwd() (wd string, err error) {
    	var buf [PathMax]byte
    	n, err := Getcwd(buf[0:])
    	if err != nil {
    		return "", err
    	}
    	// Getcwd returns the number of bytes written to buf, including the NUL.
    	if n < 1 || n > len(buf) || buf[n-1] != 0 {
    		return "", EINVAL
    	}
    	// In some cases, Linux can return a path that starts with the
    	// "(unreachable)" prefix, which can potentially be a valid relative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            this.artifacts = artifacts;
    
            // flush the calculated artifactMap
            artifactMap = null;
        }
    
        /**
         * All dependencies that this project has, including transitive ones. Contents are lazily populated, so depending on
         * what phases have run dependencies in some scopes won't be included. e.g. if only compile phase has run,
         * dependencies with scope test won't be included.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// +optional
    	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,2,opt,name=apiVersion"`
    }
    
    // ListMeta describes metadata that synthetic resources must have, including lists and
    // various status objects. A resource may have only one of {ObjectMeta, ListMeta}.
    type ListMeta struct {
    	// Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top