Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for ccCompiler (0.14 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		}
    
    		info := &Info{
    			Uses: make(map[*syntax.Name]Object),
    		}
    		pkg, _ := conf.Check("p", files, info)
    		if pkg == nil {
    			t.Errorf("for %s importer, type-checking failed to return a package", compiler)
    			continue
    		}
    
    		imports := pkg.Imports()
    		if len(imports) != 1 {
    			t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    		}
    	}
    }
    
    // Sink variables are here to force the compiler to not elide
    // seemingly useless work in benchmarks and allocation tests. If you
    // were to just `_ = foo()` within a test function, the compiler could
    // correctly deduce that foo() does nothing and doesn't need to be
    // called. By writing results to a global variable, we hide that fact
    // from the compiler and force it to keep the code under test.
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	_AUX_FILE   = 252
    	_AUX_CSECT  = 251
    	_AUX_SECT   = 250
    )
    
    // Xftype field
    const (
    	XFT_FN = 0   // Source File Name
    	XFT_CT = 1   // Compile Time Stamp
    	XFT_CV = 2   // Compiler Version Number
    	XFT_CD = 128 // Compiler Defined Information/
    
    )
    
    // Symbol type field.
    const (
    	XTY_ER  = 0    // External reference
    	XTY_SD  = 1    // Section definition
    	XTY_LD  = 2    // Label definition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            List<Field> instanceFields = type.getInstanceFields();
            if (instanceFields.isEmpty()) {
                return false;
            }
            // Ignore irrelevant synthetic metaClass field injected by the Groovy compiler
            if (instanceFields.size() == 1 && isSyntheticMetaClassField(instanceFields.get(0))) {
                return false;
            }
            return true;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. gradle/verification-metadata.xml

                <pgp value="E62231331BCA7E1F292C9B88C1B12A5D99C0729D"/>
             </artifact>
          </component>
          <component group="org.jetbrains.kotlin" name="kotlin-scripting-compiler-impl-embeddable" version="1.6.21">
             <artifact name="kotlin-scripting-compiler-impl-embeddable-1.6.21.jar">
                <sha256 value="e4044b8de01e84633923706f43cda80d37d8bbef8ce9a866f9d95962ddd20480" reason="Artifact is not signed"/>
             </artifact>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

             *             const val K = 1
             *         }
             *     }
             *
             * the compiler reports "Variable 'K' must be initialized". This happens because there is no guarantee that the companion object
             * was initialized at the time when we use `C.K` for the enum entry `ONE`. To avoid this type of compiler errors, we don't shorten
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	if cap(state.blockDebug) < f.NumBlocks() {
    		state.blockDebug = make([]BlockDebug, f.NumBlocks())
    	} else {
    		// This local variable, and the ones like it below, enable compiler
    		// optimizations. Don't inline them.
    		b := state.blockDebug[:f.NumBlocks()]
    		for i := range b {
    			b[i] = BlockDebug{}
    		}
    	}
    
    	// A list of slots per Value. Reuse the previous child slices.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	// minLegalPointer is the smallest possible legal pointer.
    	// This is the smallest possible architectural page size,
    	// since we assume that the first page is never mapped.
    	//
    	// This should agree with minZeroPage in the compiler.
    	minLegalPointer uintptr = 4096
    
    	// minHeapForMetadataHugePages sets a threshold on when certain kinds of
    	// heap metadata, currently the arenas map L2 entries and page alloc bitmap
    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/runtime/map.go

    //
    //go:linkname makemap_small
    func makemap_small() *hmap {
    	h := new(hmap)
    	h.hash0 = uint32(rand())
    	return h
    }
    
    // makemap implements Go map creation for make(map[k]v, hint).
    // If the compiler has determined that the map or the first bucket
    // can be created on the stack, h and/or bucket may be non-nil.
    // If h != nil, the map can be created directly in h.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	// On Windows, asmcgocall_landingpad acts as landing pad for exceptions
    	// thrown in the cgo call. Exceptions that reach this function will be
    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top