Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for src0 (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                }
    
                dependencies {
                    implementation libs.build.src.lib
                }
            """
            file("buildSrc/settings.gradle") << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
                            library("build-src-lib", "org.gradle.test:buildsrc-lib:1.0")
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    func writeGDBLinkerScript() string {
    	name := "fix_debug_gdb_scripts.ld"
    	path := filepath.Join(*flagTmpdir, name)
    	src := `SECTIONS
    {
      .debug_gdb_scripts BLOCK(__section_alignment__) (NOLOAD) :
      {
        *(.debug_gdb_scripts)
      }
    }
    INSERT AFTER .debug_types;
    `
    	err := os.WriteFile(path, []byte(src), 0666)
    	if err != nil {
    		Errorf(nil, "WriteFile %s failed: %v", name, err)
    	}
    	return path
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// arg1 = address of src memory (in R16 aka arm64.REGRT1, changed as side effect)
    		// arg2 = address of the last element of src
    		// arg3 = mem
    		// returns mem
    		//	LDP.P	16(R16), (R25, Rtmp)
    		//	STP.P	(R25, Rtmp), 16(R17)
    		//	CMP	Rarg2, R16
    		//	BLE	-3(PC)
    		// Note: the-end-of-src may be not a valid pointer. it's a problem if it is spilled.
    		// the-end-of-src - 16 is within the area to copy, ok to spill.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    )
    
    var decoderCover []bool
    
    func init() {
    	decoderCover = make([]bool, len(instFormats))
    }
    
    // Decode decodes the 4 bytes in src as a single instruction.
    func Decode(src []byte) (inst Inst, err error) {
    	if len(src) < 4 {
    		return Inst{}, errShort
    	}
    
    	x := binary.LittleEndian.Uint32(src)
    
    Search:
    	for i := range instFormats {
    		f := &instFormats[i]
    		if x&f.mask != f.value {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    //go:cgo_import_dynamic libc_close close "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Clonefile(src string, dst string, flags int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(src)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(dst)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            """
    
            settingsFile << """
                include 'consumer'
            """
    
            // Can't define classes in buildscript block, so let's do it in buildSrc
            file("buildSrc/src/main/groovy/TargetColor.groovy") << """
                import ${TransformParameters.name}
                import ${Property.name}
                import ${Input.name}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            }
        }
    
        def "reports problems in buildSrc plugin"() {
            file("buildSrc/src/main/java/SneakyPlugin.java") << """
                import ${Project.name};
                import ${Plugin.name};
    
                public class SneakyPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. src/os/os_test.go

    	benchmarkStat(b, filepath.Join(runtime.GOROOT(), "src/os/os_test.go"))
    }
    
    func BenchmarkStatDir(b *testing.B) {
    	benchmarkStat(b, filepath.Join(runtime.GOROOT(), "src/os"))
    }
    
    func BenchmarkLstatDot(b *testing.B) {
    	benchmarkLstat(b, ".")
    }
    
    func BenchmarkLstatFile(b *testing.B) {
    	benchmarkLstat(b, filepath.Join(runtime.GOROOT(), "src/os/os_test.go"))
    }
    
    func BenchmarkLstatDir(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/internal/src"
    	"fmt"
    	"math"
    )
    
    type branch int
    
    const (
    	unknown branch = iota
    	positive
    	negative
    	// The outedges from a jump table are jumpTable0,
    	// jumpTable0+1, jumpTable0+2, etc. There could be an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/html/template/exec_test.go

    		t.Fatal(err)
    	}
    	if got := buf.String(); got != want2 {
    		t.Errorf("got %q, want %q", got, want2)
    	}
    }
    
    func TestEvalFieldErrors(t *testing.T) {
    	tests := []struct {
    		name, src string
    		value     any
    		want      string
    	}{
    		{
    			// Check that calling an invalid field on nil pointer
    			// prints a field error instead of a distracting nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top