Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 166 for IMMEDIATE (0.22 sec)

  1. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (SRLI <t> [x] (MOVBUreg y)) && x >=  8 => (MOVDconst <t> [0])
    (SRLI <t> [x] (MOVHUreg y)) && x >= 16 => (MOVDconst <t> [0])
    (SRLI <t> [x] (MOVWUreg y)) && x >= 32 => (MOVDconst <t> [0])
    
    // Fold constant into immediate instructions where possible.
    (ADD (MOVDconst <t> [val]) x) && is32Bit(val) && !t.IsPtr() => (ADDI [val] x)
    (AND (MOVDconst [val]) x) && is32Bit(val) => (ANDI [val] x)
    (OR  (MOVDconst [val]) x) && is32Bit(val) => (ORI  [val] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_tpu_device.cc

        // available.
        xla_input->WaitForDefinitionEventOnStream(dst_device_to_device_stream);
    
        // Wait for the destination tensor buffers to be ready, if they are not
        // available for an immediate write.
        if (!dst_xla_context->transfer_manager()->CanShapedBufferBeAccessedNow(
                dst_compute_stream->parent(), xla_output->shaped_buffer())) {
          TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. cmd/background-newdisks-heal-ops.go

    func (h *healingTracker) delete(ctx context.Context) error {
    	return h.disk.Delete(ctx, minioMetaBucket,
    		pathJoin(bucketMetaPrefix, healingTrackerFilename),
    		DeleteOptions{
    			Recursive: false,
    			Immediate: false,
    		},
    	)
    }
    
    func (h *healingTracker) isHealed(bucket string) bool {
    	h.mu.RLock()
    	defer h.mu.RUnlock()
    	for _, v := range h.HealedBuckets {
    		if v == bucket {
    			return true
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                return secondary;
              }
            };
        assertTrue(transformAsync(immediate, function, directExecutor()).cancel(false));
        assertTrue(secondary.isCancelled());
        assertFalse(secondary.wasInterrupted());
      }
    
      public void testTransformAsync_interruptPropagatesToAsyncOutput() throws Exception {
        ListenableFuture<Foo> immediate = immediateFuture(new Foo());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                return secondary;
              }
            };
        assertTrue(transformAsync(immediate, function, directExecutor()).cancel(false));
        assertTrue(secondary.isCancelled());
        assertFalse(secondary.wasInterrupted());
      }
    
      public void testTransformAsync_interruptPropagatesToAsyncOutput() throws Exception {
        ListenableFuture<Foo> immediate = immediateFuture(new Foo());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. src/os/pipe_test.go

    	}
    	if err := r.Close(); err != nil {
    		t.Fatal(err)
    	}
    	// Invoke the test program to run the test and write to a closed pipe.
    	// If sig is false:
    	// writing to stdout or stderr should cause an immediate SIGPIPE;
    	// writing to descriptor 3 should fail with EPIPE and then exit 0.
    	// If sig is true:
    	// all writes should fail with EPIPE and then exit 0.
    	for _, sig := range []bool{false, true} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ANDconst", argLength: 1, reg: regInfo{inputs: []regMask{gp | sp | sb}, outputs: []regMask{gp}}, clobberFlags: true, asm: "ANDCC", aux: "Int64", typ: "Int"}, // arg0&aux == 0 // and-immediate sets CC on PPC, always.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/main.go

    var (
    	flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
    	flagBindNow = flag.Bool("bindnow", false, "mark a dynamically linked ELF object for immediate function binding")
    
    	flagOutfile    = flag.String("o", "", "write output to `file`")
    	flagPluginPath = flag.String("pluginpath", "", "full path name for plugin")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    			wantFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable,
    				`storageclasses.storage.k8s.io "Class_0" not found`),
    		},
    		{
    			name:                "unbound volume immediate binding mode",
    			Pod:                 createPodWithVolume("pod_1", "PVC_ImmediateSC"),
    			Node:                testNode,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  10. cmd/storage-datatypes.go

    )
    
    //go:generate msgp -file=$GOFILE
    
    // DeleteOptions represents the disk level delete options available for the APIs
    type DeleteOptions struct {
    	BaseOptions
    	Recursive bool `msg:"r"`
    	Immediate bool `msg:"i"`
    	UndoWrite bool `msg:"u"`
    	// OldDataDir of the previous object
    	OldDataDir string `msg:"o,omitempty"` // old data dir used only when to revert a rename()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top