Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for ccCompiler (0.11 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = this.buildPom("plugin-management-inheritance");
            assertEquals(
                    "0.1-stub-SNAPSHOT",
                    pom.getValue("build/pluginManagement/plugins[@artifactId='maven-compiler-plugin']/version"));
        }
    
        @Test
        void testProfilePlugins() throws Exception {
            PomTestWrapper pom = this.buildPom("profile-plugins", "standard");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.28
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.30
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    				Actor:  work.ActorFunc(work.WriteCoverMetaFilesFile),
    				Objdir: b.NewObjdir(),
    			}
    			for _, p := range testCoverPkgs {
    				p.Internal.Cover.GenMeta = true
    			}
    		}
    	}
    
    	// Inform the compiler that it should instrument the binary at
    	// build-time when fuzzing is enabled.
    	if testFuzz != "" {
    		// Don't instrument packages which may affect coverage guidance but are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    			pkg.err = err
    		}
    	}
    
    	pkg.inStd = (search.IsStandardImportPath(pkg.path) && search.InDir(pkg.dir, cfg.GOROOTsrc) != "")
    
    	var imports, testImports []string
    
    	if cfg.BuildContext.Compiler == "gccgo" && pkg.inStd {
    		// We can't scan standard packages for gccgo.
    	} else {
    		var err error
    		imports, testImports, err = scanDir(modroot, pkg.dir, ld.Tags)
    		if err != nil {
    			pkg.err = err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    }
    
    // encodeU encodes a U-type RISC-V instruction.
    func encodeU(ins *instruction) uint32 {
    	// The immediates for encodeU are the upper 20 bits of a 32 bit value.
    	// Rather than have the user/compiler generate a 32 bit constant, the
    	// bottommost bits of which must all be zero, instead accept just the
    	// top bits.
    	imm := immI(ins.as, ins.imm, 20)
    	rd := regI(ins.rd)
    	enc := encode(ins.as)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top