Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 426 for former (0.12 sec)

  1. src/internal/reflectlite/export_test.go

    	// Using an unexported field forces flagRO.
    	if !field.Name.IsExported() {
    		if field.Embedded() {
    			fl |= flagEmbedRO
    		} else {
    			fl |= flagStickyRO
    		}
    	}
    	// Either flagIndir is set and v.ptr points at struct,
    	// or flagIndir is not set and v.ptr is the actual struct data.
    	// In the former case, we want v.ptr + offset.
    	// In the latter case, we must have field.offset = 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/runtime/netpoll_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // This is based on the former libgo/runtime/netpoll_select.c implementation
    // except that it uses poll instead of select and is written in Go.
    // It's also based on Solaris implementation for the arming mechanisms
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/trace/procgen.go

    	ctx.SetResourceType("PROCS")
    
    	// Finish off ranges first. It doesn't really matter for the global ranges,
    	// but the proc ranges need to either be a subset of a goroutine slice or
    	// their own slice entirely. If the former, it needs to end first.
    	g.procRangeGenerator.Finish(ctx)
    	g.globalRangeGenerator.Finish(ctx)
    
    	// Finish off all the goroutine slices.
    	for _, gs := range g.gStates {
    		gs.finish(ctx)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

          replacer.create<mlir::func::ReturnOp>(yield_op.getLoc(),
                                                yield_op.getOperands());
          yield_op.erase();
        }
    
        // Remap the captured operands in the (former) island block with newly
        // created entry block arguments in the function body.
        {
          Block &entry_block = outlined_func.getBody().front();
          auto loc = outlined_func.getLoc();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

        // And for that case, there will be a cyclic dependency between the analyze and the format task if we only take output/input locations into account.
        // Therefore, we currently allow these kind of missing dependencies, as long as any order has been specified.
        // See https://github.com/gradle/gradle/issues/15616.
        private boolean hasNoSpecifiedOrder(Node producerNode, Node consumerNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

            /*
             * This shouldn't be necessary, but currently is because the worker API handles return types differently
             * depending on whether you use process isolation or classpath isolation. In the former case, the return
             * value is serialized and deserialized, so the correct class is returned. In the latter case, the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        the region owned by the former will be outlined to a function with a
        `tfrt_ifrt_serving.program_id` attribute. After that, the runtime ensures
        that the outlined function is compiled into an executable and is available
        for lookup from `IfrtCall` TF ops.
    
        `variable_arg_indices` is a sorted (ascending order) array and indicates which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/config/config.go

    	b.WriteString(fmt.Sprintf("ENABLE_INBOUND_IPV6=%t\n", c.EnableIPv6))
    	// TODO remove this flag - "dual stack" should just mean
    	// - supports IPv6
    	// - supports pods with more than one podIP
    	// The former already has a flag, the latter is something we should do by default and is a bug where we do not
    	b.WriteString(fmt.Sprintf("DUAL_STACK=%t\n", c.DualStack))
    	b.WriteString(fmt.Sprintf("DNS_CAPTURE=%t\n", c.RedirectDNS))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

     * them as immutable values to the {@link DefaultTaskDependency#DefaultTaskDependency(TaskResolver, ImmutableSet, TaskDependencyUsageTracker)}
     * constructor than to use the {@link #add(Object...)} method, as the former will
     * require less memory to store them.
     */
    public class DefaultTaskDependency extends AbstractTaskDependency {
        private final ImmutableSet<Object> immutableValues;
        private Set<Object> mutableValues;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top