Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,124 for reprocess (0.26 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

            } else {
                "workerExecutor.${actionName == 'Forked' ? 'process' : 'no'}Isolation().submit(${actionName}WorkAction) { }"
            }
        }
    
        def "generates events for worker actions executed in-process and forked"() {
            given:
            settingsFile << "rootProject.name = 'single'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/group_by_dialect.mlir

      // CHECK-NEXT: tf.Const
      // CHECK-NEXT: tf.AddV2
      // CHECK-NEXT: tf.Identity
      // CHECK-NEXT: tf.NoOp
      // CHECK-NEXT: return
    }
    
    // -----
    
    // Test what happens if we don't preprocess the input function,
    // i.e., don't first group operations by dialect.
    
    func.func @interleave(%arg0: f32) -> (f32, f32, f32) {
      %0 = "x.a"(%arg0) : (f32) -> f32
      %1 = "y.a"(%arg0) : (f32) -> f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 28 23:43:21 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/go/terminal_test.go

    	err = cmd.Start()
    	if err != nil {
    		t.Fatalf("starting subprocess: %s", err)
    	}
    	w.Close()
    	t.Cleanup(func() {
    		stdin.Close()
    		if err := cmd.Wait(); err != nil {
    			t.Errorf("suprocess failed with: %s", err)
    		}
    	})
    
    	buf := make([]byte, 2)
    	n, err := io.ReadFull(r, buf)
    	if err != nil || !(buf[0] == '1' || buf[0] == 'X') || !(buf[1] == '2' || buf[1] == 'X') {
    		t.Logf("read error: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 18:18:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/PythonJob.java

                it.start();
    
                final Process currentProcess = jobProcess.getProcess();
                currentProcess.waitFor();
                it.join(5000);
    
                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("Python: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput());
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            TestSftpSubsystem(ChannelSession channel, SftpSubsystemConfigurator configurator) {
                super(channel, configurator)
            }
    
            @Override
            protected void doProcess(Buffer buffer, int length, int type, int id) throws IOException {
                int originalBufferPosition = buffer.rpos()
    
                int pos = buffer.rpos()
                def command = commandMessage(buffer, type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    	return b.build(ctx, a)
    }
    
    // pgoActionID computes the action ID for a preprocess PGO action.
    func (b *Builder) pgoActionID(input string) cache.ActionID {
    	h := cache.NewHash("preprocess PGO profile " + input)
    
    	fmt.Fprintf(h, "preprocess PGO profile\n")
    	fmt.Fprintf(h, "preprofile %s\n", b.toolID("preprofile"))
    	fmt.Fprintf(h, "input %q\n", b.fileHash(input))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	case obj.NAME_PARAM:
    		// Adjust to the bottom of PARAMs.
    		a.Offset += stacksize + 8
    	}
    }
    
    // preprocess generates prologue and epilogue code, computes PC-relative branch
    // and jump offsets, and resolves pseudo-registers.
    //
    // preprocess is called once per linker symbol.
    //
    // When preprocess finishes, all instructions in the symbol are either
    // concrete, real RISC-V instructions or directive pseudo-ops like TEXT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/obj5.go

    	return end
    }
    
    var unaryDst = map[obj.As]bool{
    	ASWI:  true,
    	AWORD: true,
    }
    
    var Linkarm = obj.LinkArch{
    	Arch:           sys.ArchARM,
    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span5,
    	Progedit:       progedit,
    	UnaryDst:       unaryDst,
    	DWARFRegisters: ARMDWARFRegisters,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    			return cmpBool(!p1Found, !p2Found)
    		}
    
    		p1Process := processUsage(p1Stats.ProcessStats)
    		p2Process := processUsage(p2Stats.ProcessStats)
    		// prioritize evicting the pod which has the larger consumption of process
    		return int(p2Process - p1Process)
    	}
    }
    
    // exceedDiskRequests compares whether or not pods' disk usage exceeds their requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

     * The work action can then query what changed for an input parameter since the last execution to only process the changes.
     *
     * The following example shows a task which reverses the text in each of its input files.
     * It demonstrates how to use {@link InputChanges} to only process the changed files.
     *
     * <pre class='autoTested'>
     * abstract class IncrementalReverseTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top