Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 264 for capture1 (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/Jsr330ConstructorSelector.java

                TreeFormatter formatter = new TreeFormatter();
                formatter.node(type);
                formatter.append(" is a non-static inner class, it probably captures a variable from the outer scope.");
                throw new IllegalConstructionException(formatter.toString(), CUSTOM_GRADLE_TASK_DOC_LINK);
            }
        }
    
        public static class CachedConstructor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:52:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/math/big/arith_ppc64x.s

    	ADD   $-1, R7
    	ADDE  R11, R16, R20
    	CMP   R7, $0
    	MOVDU R20, 8(R10)
    	BEQ   final
    
    	MOVD  8(R8), R11
    	MOVD  8(R9), R16
    	ADDE  R11, R16, R20
    	MOVD  R20, 8(R10)
    
    final:
    	ADDZE R4              // Capture CA
    
    done:
    	MOVD  R4, c+72(FP)
    	RET
    
    // func subVV(z, x, y []Word) (c Word)
    // z[i] = x[i] - y[i] for all i, carrying
    TEXT ·subVV(SB), NOSPLIT, $0
    	MOVD  z_len+8(FP), R7 // R7 = z_len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    func ClosureDebugRuntimeCheck(clo *ClosureExpr) {
    	if base.Debug.Closure > 0 {
    		if clo.Esc() == EscHeap {
    			base.WarnfAt(clo.Pos(), "heap closure, captured vars = %v", clo.Func.ClosureVars)
    		} else {
    			base.WarnfAt(clo.Pos(), "stack closure, captured vars = %v", clo.Func.ClosureVars)
    		}
    	}
    	if base.Flag.CompilingRuntime && clo.Esc() == EscHeap && !clo.IsGoWrap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            //
            // Note that we are not capturing this value in the actual inputs of the work; doing so would cause unnecessary cache misses.
            // This is why the hash is captured here and not in visitIdentityInputs().
            FileSystemLocationSnapshot inputArtifactSnapshot = fileSystemAccess.read(inputArtifact.getAbsolutePath());
            HashCode inputArtifactSnapshotHash = inputArtifactSnapshot.getHash();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                    currentArg = new StringBuilder(arg.substring(1));
                    addedToBuffer = true;
                }
    
                // this has to be a separate "if" statement, to capture the case of: "-Dfoo=bar"
                if (addedToBuffer && arg.endsWith("\"")) {
                    // if we're building an argument, keep doing so.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. cmd/globals.go

    	globalBrowserConfig browser.Config
    
    	// This flag is set to 'true' when MINIO_UPDATE env is set to 'off'. Default is false.
    	globalInplaceUpdateDisabled = false
    
    	// Captures site name and region
    	globalSite config.Site
    
    	// MinIO local server address (in `host:port` format)
    	globalMinioAddr = ""
    
    	// MinIO default port, can be changed through command line.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/runtime/debug/stack.go

    func PrintStack() {
    	os.Stderr.Write(Stack())
    }
    
    // Stack returns a formatted stack trace of the goroutine that calls it.
    // It calls [runtime.Stack] with a large enough buffer to capture the entire trace.
    func Stack() []byte {
    	buf := make([]byte, 1024)
    	for {
    		n := runtime.Stack(buf, false)
    		if n < len(buf) {
    			return buf[:n]
    		}
    		buf = make([]byte, 2*len(buf))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run_linux.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    package capture
    
    import (
    	"fmt"
    	"net"
    	"strconv"
    
    	"github.com/vishvananda/netlink"
    	"golang.org/x/sys/unix"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/tools/istio-iptables/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      // Drop unused results.
      EliminateUnusedResultsForWhile(op);
      return success();
    }
    
    // Canonicalizes region based if/case and cluster operations. If the same
    // captured resource typed value is used for all region results, then that value
    // is forwared to the result and the result is dropped.
    LogicalResult CanonicalizeRegionIfCaseCluster(Operation *op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Prepares to load or create a model. Does nothing if the cached model is available or else prepares to capture
         * configuration fingerprints and validation problems and then runs the given function.
         */
        fun maybePrepareModel(action: () -> Unit)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top