Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for PROPERTY (0.29 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .member-signature .type-parameters {
        white-space: normal;
    }
    /*
     * Styles for formatting effect.
     */
    .source-line-no {
        /* Color of line numbers in source pages can be set via custom property below */
        color:var(--source-linenumber-color, green);
        padding:0 30px 0 0;
    }
    .block {
        display:block;
        margin:0 10px 5px 0;
        color:var(--block-text-color);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                }
            """
    
            when:
            fails ':help'
    
            then: "extension is not generated if there are no libraries defined"
            failure.assertHasCause("Could not get unknown property 'libs' for object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler")
        }
    
        def "buildSrc and main project have different libraries extensions"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    //    t1 = MINSD x, y   => incorrect if x==NaN or x==-0,y==+0
    //    t2 = MINSD t1, x  => fixes x==NaN case
    //   res = POR t1, t2   => fixes x==-0,y==+0 case
    // Note that this trick depends on the special property that (NaN OR x) produces a NaN (although
    // it might not produce the same NaN as the input).
    (Min(64|32)F <t> x y) => (POR (MINS(D|S) <t> (MINS(D|S) <t> x y) x) (MINS(D|S) <t> x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/time/time.go

    func (t Time) IsZero() bool {
    	return t.sec() == 0 && t.nsec() == 0
    }
    
    // abs returns the time t as an absolute time, adjusted by the zone offset.
    // It is called when computing a presentation property like Month or Hour.
    func (t Time) abs() uint64 {
    	l := t.loc
    	// Avoid function calls when possible.
    	if l == nil || l == &localLoc {
    		l = l.get()
    	}
    	sec := t.unixSec()
    	if l != &utcLoc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    			stub.AddUint32(ctxt.Arch, OP_LD_R12_R12)                   // ld r12, 0(r12)
    		}
    	default:
    		log.Fatalf("gencallstub does not support ELFv2 ABI property %d", stubType)
    	}
    
    	// Jump to the loaded pointer
    	stub.AddUint32(ctxt.Arch, OP_MTCTR_R12) // mtctr r12
    	stub.AddUint32(ctxt.Arch, OP_BCTR)      // bctr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // _XlaInternalScope only when auto_jit is on.
      //
      // We may want to restrict the _XlaScope behavior to require all nodes marked
      // with _XlaCompile=true to also have a _XlaScope property set (and raise an
      // error otherwise); but for now we don't do this.
    
      if (global_jit_level_ != OptimizerOptions::OFF) {
        // If global_jit_level_ is ON, respect only _XlaInternalScope.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	// is 512 and an inclusive minimum, then a comparison against minSizeForMallocHeader
    	// by the two values would produce different results. In other words, the comparison
    	// would not be invariant to size-class rounding. Eschewing this property means a
    	// more complex check or possibly storing additional state to determine whether a
    	// span has malloc headers.
    	minSizeForMallocHeader = goarch.PtrSize * ptrBits
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    		//
    		// N.B. We're generating an impossible profile here, with a
    		// recursive inlineCalleeDump call. This is simulating a non-Go
    		// function that looks like an inlined Go function other than
    		// its recursive property. See pcDeck.tryAdd.
    		name: "directly_recursive_func_is_not_inlined",
    		input: []uint64{
    			3, 0, 500, // hz = 500. Must match the period.
    			5, 0, 30, inlinedCallerStack[0], inlinedCallerStack[0],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

        kCFTaggedObjectID_Undefined7 = (7 << 1) + 1,
    };
    */
    
    func (c *typeConv) badJNI(dt *dwarf.TypedefType) bool {
    	// In Dalvik and ART, the jobject type in the JNI interface of the JVM has the
    	// property that it is sometimes (always?) a small integer instead of a real pointer.
    	// Note: although only the android JVMs are bad in this respect, we declare the JNI types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top