Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for executors (0.23 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Result */
        public static final String LABELS_SCRIPT_RESULT = "{labels.scriptResult}";
    
        /** The key of the message: Executor */
        public static final String LABELS_SCRIPT_TYPE = "{labels.scriptType}";
    
        /** The key of the message: Segmentation */
        public static final String LABELS_SEGMENTATION = "{labels.segmentation}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // but not run them.
    //
    // The -r flag causes clean to be applied recursively to all the
    // dependencies of the packages named by the import paths.
    //
    // The -x flag causes clean to print remove commands as it executes them.
    //
    // The -cache flag causes clean to remove the entire go build cache.
    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </pre>
    
    <pre>
    if x &gt; max {
    	x = max
    }
    </pre>
    
    <p>
    The expression may be preceded by a simple statement, which
    executes before the expression is evaluated.
    </p>
    
    <pre>
    if x := f(); x &lt; y {
    	return x
    } else if x &gt; z {
    	return z
    } else {
    	return y
    }
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	Send Value     // value to send (for send)
    }
    
    // Select executes a select operation described by the list of cases.
    // Like the Go select statement, it blocks until at least one of the cases
    // can proceed, makes a uniform pseudo-random choice,
    // and then executes that case. It returns the index of the chosen case
    // and, if that case was a receive operation, the value received and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    class DependencyInsightReportTaskIntegrationTest extends AbstractIntegrationSpec {
        def jvmVersion = JavaVersion.current().majorVersion
    
        def setup() {
            executer.requireOwnGradleUserHomeDir()
            settingsFile << """
                rootProject.name = 'insight-test'
            """
            new ResolveTestFixture(buildFile).addDefaultVariantDerivationStrategy()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.util.internal.VersionNumber
    
    import static org.gradle.testkit.runner.TaskOutcome.FROM_CACHE
    import static org.gradle.testkit.runner.TaskOutcome.NO_SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                           ->getOrLoadDialect<mlir::TFL::TensorFlowLiteDialect>();
        vhlo_dialect_ =
            module.getContext()->getOrLoadDialect<mlir::vhlo::VhloDialect>();
        // Right now the TF executor dialect is still needed to build NodeDef.
        module.getContext()
            ->getOrLoadDialect<mlir::tf_executor::TensorFlowExecutorDialect>();
      }
    
      std::optional<std::string> TranslateInternal();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    mlir::Operation* ImporterBase::CreateOperation(
        const Node& node, llvm::StringRef node_type_name,
        const mlir::OperationState& result,
        const llvm::SmallVectorImpl<mlir::Value>& control_operands) {
      // For the tf.executor specific operations (not wrapped in an island), we
      // have an extra returned value for the control result, and we concatenate
      // control and non-control operands.
      mlir::SmallVector<mlir::Type, 4> types(result.types);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    		}
    		inc++
    	}
    	lock(&sched.gFree.lock)
    	sched.gFree.noStack.pushAll(noStackQ)
    	sched.gFree.stack.pushAll(stackQ)
    	sched.gFree.n += inc
    	unlock(&sched.gFree.lock)
    }
    
    // Breakpoint executes a breakpoint trap.
    func Breakpoint() {
    	breakpoint()
    }
    
    // dolockOSThread is called by LockOSThread and lockOSThread below
    // after they modify m.locked. Do not allow preemption during this call,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top