Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for IMMEDIATE (0.1 sec)

  1. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	SRAI	$-1, X5, X6			// ERROR "immediate out of range 0 to 63"
    	RORIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SLLIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SRLIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SRAIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	RORIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SLLIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loong64/asm.go

    	if isRequestingLowPageBits(t) {
    		// corresponding immediate field is 12 bits wide
    		return tgt & 0xfff
    	}
    
    	pageDelta := (tgt >> 12) - (pc >> 12)
    	if tgt&0xfff >= 0x800 {
    		// adjust for sign-extended addition of the low bits
    		pageDelta += 1
    	}
    	// corresponding immediate field is 20 bits wide
    	return pageDelta & 0xfffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

        DEFAULT_UAST,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         */
        GENERIC_ARGUMENT,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         * No projections allowed in immediate arguments
         */
        SUPER_TYPE,
    
        /**
         * Similar to [SUPER_TYPE], except for that Kotlin collections remain as-is.
         */
        SUPER_TYPE_KOTLIN_COLLECTIONS_AS_IS,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/UpdateNowEvent.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.events;
    
    import org.gradle.api.logging.LogLevel;
    
    /**
     * Indicates an event that can trigger an immediate update to the console.
     */
    public class UpdateNowEvent extends OutputEvent implements InteractiveEvent {
    
        private final long timestamp;
    
        public UpdateNowEvent(long timestamp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. cmd/metrics-v3-ilm.go

    	ilmTransitionPendingTasksMD         = NewGaugeMD(transitionPendingTasks, "Number of pending ILM transition tasks in the queue")
    	ilmTransitionMissedImmediateTasksMD = NewCounterMD(transitionMissedImmediateTasks, "Number of missed immediate ILM transition tasks")
    	ilmVersionsScannedMD                = NewCounterMD(versionsScanned, "Total number of object versions checked for ILM actions since server start")
    )
    
    // loadILMMetrics - `MetricsLoaderFn` for ILM metrics.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. doc/next/5-toolchain.md

    this check, for debugging and experimenting purposes.
    
    <!-- CL 473495 -->
    When building a dynamically linked ELF binary (including PIE binary), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	return err
    }
    
    func deleteMultiClusterSecret(k8s kube.Client, sname string) error {
    	var immediate int64
    
    	return k8s.Kube().CoreV1().Secrets(testSecretNameSpace).Delete(
    		context.TODO(),
    		sname, metav1.DeleteOptions{GracePeriodSeconds: &immediate})
    }
    
    func verifyControllers(t *testing.T, m *Multicluster, expectedControllerCount int, timeoutName string) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      // converter. The single argument overload version calls this function.
      //
      // When add_edges_to_output_of_downstream_nodes is true, the output edges of
      // the xla_launch_node's immediate downstream nodes would be attached to the
      // generated xla node. For example, if the original graph is
      // StatefulPartitionedCall{_xla_compile_id=1} -> XlaClusterOutput -> NodeA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/envoy/proxy_test.go

    	}
    
    	got := test.args("test.json", "testdata/bootstrap.json")
    	want := []string{
    		"-c", "test.json",
    		"--drain-time-s", "45",
    		"--drain-strategy", "immediate",
    		"--local-address-ip-version", "v4",
    		"--file-flush-interval-msec", "1000",
    		"--disable-hot-restart",
    		"--allow-unknown-static-fields",
    		"-l", "trace",
    		"--component-log-level", "misc:error",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/net/http/cgi/cgi_main.go

    func childCGIProcess() {
    	if os.Getenv("REQUEST_METHOD") == "" {
    		// Not in a CGI environment; skipping test.
    		return
    	}
    	switch os.Getenv("REQUEST_URI") {
    	case "/immediate-disconnect":
    		os.Exit(0)
    	case "/no-content-type":
    		fmt.Printf("Content-Length: 6\n\nHello\n")
    		os.Exit(0)
    	case "/empty-headers":
    		fmt.Printf("\nHello")
    		os.Exit(0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top