Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,284 for outC (1.2 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                class MyTask extends DefaultTask {
                    @OutputFiles Set<File> out = new HashSet<File>()
    
                    @TaskAction def exec() {
                        out.each { it.text = 'data' }
                    }
                }
    
                task myTask(type: MyTask) {
                    out.addAll([file("out1"), file("out2")])
                }
            """
    
            when:
            run ':myTask'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                    task producer(type: OutputFilesTask) {
                        out1.convention(layout.buildDirectory.file("\${project.name}.out1.jar"))
                        out2.convention(layout.buildDirectory.file("\${project.name}.out2.jar"))
                    }
    
                    artifacts {
                        implementation producer.out1
                        implementation producer.out2
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            pack output,
                prop("out1", FILE, null),
                prop("out2", DIRECTORY, null)
    
            then:
            noExceptionThrown()
    
            when:
            def input = new ByteArrayInputStream(output.toByteArray())
            unpack input,
                prop("out1", FILE, null),
                prop("out2", DIRECTORY, null)
    
            then:
            noExceptionThrown()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. src/compress/flate/deflate_test.go

    	}
    
    	writeData(w)
    	w.Close()
    	out1 := buf.Bytes()
    
    	buf2 := new(bytes.Buffer)
    	w.Reset(buf2)
    	writeData(w)
    	w.Close()
    	out2 := buf2.Bytes()
    
    	if len(out1) != len(out2) {
    		t.Errorf("got %d, expected %d bytes", len(out2), len(out1))
    		return
    	}
    	if !bytes.Equal(out1, out2) {
    		mm := 0
    		for i, b := range out1[:len(out2)] {
    			if b != out2[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/BuildCacheLocalCacheIntegrationTest.groovy

                            f.text = val
                        }
                    }
                }
    
                apply plugin: "base"
                tasks.create("t", CustomTask).paths << "out1" << "out2"
            """
    
            settingsFile << localCache.localCacheConfiguration() << remoteCache.remoteCacheConfiguration()
    
            executer.beforeExecute { it.withBuildCacheEnabled() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm_arm64_test.go

    	out1 := `0x0008\s00008\s\(.*\)\tMOVD\t\$1,\sR1`
    	// If the output contains this pattern, the pc-offsite of "MOVD $2, R2" is 16 bytes aligned.
    	out2 := `0x0010\s00016\s\(.*\)\tMOVD\t\$2,\sR2`
    	var testCases = []struct {
    		name string
    		code []byte
    		out  string
    	}{
    		{"8-byte alignment", code1, out1},
    		{"16-byte alignment", code2, out2},
    	}
    
    	for _, test := range testCases {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            secondLine.put("@timestamp", item.getTimestamp());
    
            try (OutputStream out1 = getXContentOutputStream(firstLineMap); OutputStream out2 = getXContentOutputStream(secondLine)) {
                return ((ByteArrayOutputStream) out1).toString(CoreLibConstants.UTF_8) + '\n'
                        + ((ByteArrayOutputStream) out2).toString(CoreLibConstants.UTF_8);
            } catch (final IOException e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/anames.go

    	"NEGL",
    	"NEGQ",
    	"NEGW",
    	"NOPL",
    	"NOPW",
    	"NOTB",
    	"NOTL",
    	"NOTQ",
    	"NOTW",
    	"ORB",
    	"ORL",
    	"ORPD",
    	"ORPS",
    	"ORQ",
    	"ORW",
    	"OUTB",
    	"OUTL",
    	"OUTSB",
    	"OUTSL",
    	"OUTSW",
    	"OUTW",
    	"PABSB",
    	"PABSD",
    	"PABSW",
    	"PACKSSLW",
    	"PACKSSWB",
    	"PACKUSDW",
    	"PACKUSWB",
    	"PADDB",
    	"PADDL",
    	"PADDQ",
    	"PADDSB",
    	"PADDSW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  9. src/runtime/ehooks_test.go

    			cmd := exec.Command(exe, []string{"-mode", s.mode}...)
    			out, _ := cmd.CombinedOutput()
    			outs := strings.ReplaceAll(string(out), "\n", " ")
    			outs = strings.TrimSpace(outs)
    			if s.expected != "" && s.expected != outs {
    				t.Fatalf("failed%s mode %s: wanted %q\noutput:\n%s", bt,
    					s.mode, s.expected, outs)
    			}
    			for _, need := range s.musthave {
    				if !strings.Contains(outs, need) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar_fiat.go

    	x60 := uint8((x58 >> 8))
    	out1[0] = x5
    	out1[1] = x7
    	out1[2] = x9
    	out1[3] = x11
    	out1[4] = x13
    	out1[5] = x15
    	out1[6] = x17
    	out1[7] = x18
    	out1[8] = x19
    	out1[9] = x21
    	out1[10] = x23
    	out1[11] = x25
    	out1[12] = x27
    	out1[13] = x29
    	out1[14] = x31
    	out1[15] = x32
    	out1[16] = x33
    	out1[17] = x35
    	out1[18] = x37
    	out1[19] = x39
    	out1[20] = x41
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
Back to top