Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for outp (0.11 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    				fallthrough
    			case ssStarter:
    				if outp > 0 {
    					copy(i.buf[outp:], d)
    					return i.buf[:p]
    				}
    				return d
    			}
    			copy(i.buf[outp:], d)
    			outp = p
    			inCopyStart, outCopyStart = i.p, outp
    			if i.info.ccc < prevCC {
    				goto doNorm
    			}
    			continue
    		} else if r := i.rb.src.hangul(i.p); r != 0 {
    			outp = decomposeHangul(i.buf[:], r)
    			i.p += hangulUTF8Size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	ADD	$16, INP
    	VXOR	INOUT, V6, INOUT
    	CIPHER_BLOCK(INOUT, IVEC, INOUT, VCIPHER, VCIPHERLAST, Lcbc_enc10, Lcbc_enc12)
    	VOR	INOUT, INOUT, IVEC // ciphertext (INOUT) is IVEC for next block.
    	P8_STXVB16X(INOUT, OUTP, R0)
    	ADD	$16, OUTP
    	BDNZ	Lcbc_enc
    
    	P8_STXVB16X(INOUT, IVP, R0)
    	CLEAR_KEYS()
    	RET
    
    	PCALIGN $16
    Lcbc_dec:
    	P8_LXVB16X(INP, R0, TMP)
    	ADD	$16, INP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/cmd/fix/main_test.go

    				}()
    			}
    
    			// Apply fix: should get tt.Out.
    			out, fixed, ok := parseFixPrint(t, tt.Fn, tt.Name, tt.In, true)
    			if !ok {
    				return
    			}
    
    			// reformat to get printing right
    			out, _, ok = parseFixPrint(t, fnop, tt.Name, out, false)
    			if !ok {
    				return
    			}
    
    			if tt.Out == "" {
    				tt.Out = tt.In
    			}
    			if out != tt.Out {
    				t.Errorf("incorrect output.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

                apply plugin: "base"
                tasks.create("t", CustomTask).paths << "out1" << "out2"
            """
            succeeds("t")
            remote("", "writer.writeTo(${NullOutputStream.name}.INSTANCE)")
            def initialPackOp = operations.only(BuildCacheArchivePackBuildOperationType)
            def artifactFileCopy = file("artifact")
            // move it out of the local for us to use
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

                public class MyTest {
                    @org.junit.Test public void works() throws Exception {
                        System.out.print("out1");
                        System.err.print("err1");
                    }
                    @org.junit.Test public void fails() throws Exception {
                        System.out.print("out2");
                        System.err.print("err2");
                        org.junit.Assert.fail();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/builder_test.go

    	}
    	if forTCP {
    		out := &listener.Filter{}
    		if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    			t.Fatalf("failed to parse YAML: %v", err)
    		}
    		return out
    	}
    	out := &hcm.HttpFilter{}
    	if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    		t.Fatalf("failed to parse YAML: %v", err)
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultImmutableWorkspaceMetadataStoreTest.groovy

        def "can serialize and deserialize metadata"() {
            def outputHashes = ImmutableListMultimap.<String, HashCode>builder()
                .putAll("out1", hashCodeFrom(0x1234), hashCodeFrom(0x2345))
                .putAll("out2", hashCodeFrom(0x3456))
                .build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top