Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for nto (0.02 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/ZipCopyActionTest.groovy

            when:
            zip(file("file2"))
    
            then:
            def e = thrown(org.gradle.api.tasks.bundling.internal.Zip64RequiredException)
            e.message == "xyz\n\nTo build this archive, please enable the zip64 extension.\nSee: doc url"
        }
    
        void wrapsFailureToAddElement() {
            given:
            Throwable failure = new RuntimeException("broken")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/error.go

    // func with that string and an exit code.
    func checkErr(err error, handleErr func(string, int)) {
    	if err == nil {
    		return
    	}
    
    	msg := fmt.Sprintf("%s\nTo see the stack trace of this error execute with --v=5 or higher", err.Error())
    	// check if the verbosity level in klog is high enough and print a stack trace.
    	f := flag.CommandLine.Lookup("v")
    	if f != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipCopyAction.java

            } catch (Exception e) {
                if (e.getCause() instanceof Zip64RequiredException) {
                    throw new org.gradle.api.tasks.bundling.internal.Zip64RequiredException(
                        String.format("%s\n\nTo build this archive, please enable the zip64 extension.\nSee: %s", e.getCause().getMessage(), documentationRegistry.getDslRefForProperty(Zip.class, "zip64"))
                    );
                }
                zipFile.delete();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/test-util_test.go

    	return fmt.Sprintf("Expected path %s with value \n\n%v\nto be a subset of \n\n%v", pv.path, pv.value, util.ToYAML(node))
    }
    
    // NegatedFailureMessage implements the Matcher interface.
    func (m *HavePathValueContainMatcher) NegatedFailureMessage(actual any) string {
    	pv := m.expected.(PathValue)
    	node := actual.(map[string]any)
    	return fmt.Sprintf("Expected path %s with value \n\n%v\nto NOT be a subset of \n\n%v", pv.path, pv.value, util.ToYAML(node))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

                initialApiClassBytes,
                equalTo(changedApiClassBytes)
            )
        }
    
        fun assertApiChanged() {
            assertThat(
                "expected\n${initialClass.sourceContent}\nto have different API from:\n${changedClass.sourceContent}",
                initialApiClassBytes,
                not(equalTo(changedApiClassBytes))
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/builtin.go

    	var l []ir.Node
    	l = append(l, ir.NewAssignStmt(base.Pos, nl, n.X))
    	l = append(l, ir.NewAssignStmt(base.Pos, nr, n.Y))
    
    	nfrm := ir.NewUnaryExpr(base.Pos, ir.OSPTR, nr)
    	nto := ir.NewUnaryExpr(base.Pos, ir.OSPTR, nl)
    
    	nlen := typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TINT])
    
    	// n = len(to)
    	l = append(l, ir.NewAssignStmt(base.Pos, nlen, ir.NewUnaryExpr(base.Pos, ir.OLEN, nl)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

    func testPatchApplication(t *testing.T, original, patch, expected []byte, description string) {
    	result, err := jsonpatch.MergePatch(original, patch)
    	if err != nil {
    		t.Errorf("error: %s\nin test case: %s\ncannot apply patch:\n%s\nto original:\n%s\n",
    			err, description, jsonToYAMLOrError(patch), jsonToYAMLOrError(original))
    		return
    	}
    
    	if !reflect.DeepEqual(result, expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    func oneBit16(x int16) bool { return x&(x-1) == 0 && x != 0 }
    func oneBit32(x int32) bool { return x&(x-1) == 0 && x != 0 }
    func oneBit64(x int64) bool { return x&(x-1) == 0 && x != 0 }
    
    // nto returns the number of trailing ones.
    func nto(x int64) int64 {
    	return int64(ntz64(^x))
    }
    
    // logX returns logarithm of n base 2.
    // n must be a positive power of 2 (isPowerOfTwoX returns true).
    func log8(n int8) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        artifactOutput("1. Artifact metadata: hash, name\n2. Direct Super types\n3. Class dependencies")
        originalClasspath(Original classpath)
        originalClasspathInput("Original classpath as input:\nto recalculate Resolve supertypes\nstep on classpath change")
        metadata("1. Artifact metadata: hash, name\n2. Dependencies instrumented type hierarchy")
        result("1. Transformed jar\n2. hash of original jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "version": "v1alpha1"
              }
            ]
          },
          "io.k8s.apimachinery.pkg.runtime.RawExtension": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
Back to top