Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,583 for constructors (0.19 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                return true
            }
    
            val aConstructor = a.constructor
            val bConstructor = b.constructor
    
            if (aConstructor is IntersectionTypeConstructor) {
                return aConstructor.supertypes.all { areTypesCompatible(it, b) }
            }
    
            if (bConstructor is IntersectionTypeConstructor) {
                return bConstructor.supertypes.all { areTypesCompatible(a, it) }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/time/time.go

    // the current process, the serialized forms generated by t.GobEncode,
    // t.MarshalBinary, t.MarshalJSON, and t.MarshalText omit the monotonic
    // clock reading, and t.Format provides no format for it. Similarly, the
    // constructors [time.Date], [time.Parse], [time.ParseInLocation], and [time.Unix],
    // as well as the unmarshalers t.GobDecode, t.UnmarshalBinary.
    // t.UnmarshalJSON, and t.UnmarshalText always create times with
    // no monotonic clock reading.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    		//
    		// We use a local static variable to get the zeroed
    		// value of the argument type. This avoids including
    		// string.h for memset, and is also robust to C++
    		// types with constructors. Both GCC and LLVM optimize
    		// this into just zeroing _cgo_a.
    		fmt.Fprintf(fgcc, "\ttypedef %s %v _cgo_argtype;\n", ctype, p.packedAttribute())
    		fmt.Fprintf(fgcc, "\tstatic _cgo_argtype _cgo_zero;\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/classpath/intercept/InterceptScopeTest.groovy

            methodScope != propertyScope
        }
    
        def "constructor scopes of the same class are equal"() {
            expect:
            InterceptScope.constructorsOf(String) == InterceptScope.constructorsOf(String)
        }
    
        def "constructor scopes of different classes are not equal"() {
            expect:
            InterceptScope.constructorsOf(Integer) != InterceptScope.constructorsOf(Long)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 03 11:20:13 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestReportIntegrationTest.groovy

            clazz.assertTestCaseStdout("m2", is("beforeTest out\nm2 out\nafterTest out\n"))
            clazz.assertStderr(is("beforeClass err\nconstructor err\nconstructor err\nafterClass err\n"))
            clazz.assertStdout(is("beforeClass out\nconstructor out\nconstructor out\nafterClass out\n"))
        }
    
        def "collects output for failing non-root suite descriptors"() {
            given:
            buildScript """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    		if meta != 0 {
    			mheap_.heapArenaAlloc.init(meta, arenaMetaSize, true)
    		}
    
    		// We want to start the arena low, but if we're linked
    		// against C code, it's possible global constructors
    		// have called malloc and adjusted the process' brk.
    		// Query the brk so we can avoid trying to map the
    		// region over it (which will cause the kernel to put
    		// the region somewhere else, likely at a high
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					st.advance(1)
    				}
    				if len(st.str) < 1 {
    					st.fail("expected constructor type")
    				}
    				if last == nil {
    					st.fail("constructor before name is seen")
    				}
    				st.advance(1)
    				var base AST
    				if inheriting {
    					base = st.demangleType(false)
    				}
    				next = &Constructor{
    					Name: getLast(last),
    					Base: base,
    				}
    				if len(st.str) > 0 && st.str[0] == 'B' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return op.precedence
    }
    
    // Constructor is a constructor.
    type Constructor struct {
    	Name AST
    	Base AST // base class of inheriting constructor
    }
    
    func (c *Constructor) print(ps *printState) {
    	ps.print(c.Name)
    	// We don't include the base class in the demangled string.
    }
    
    func (c *Constructor) Traverse(fn func(AST) bool) {
    	if fn(c) {
    		c.Name.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top