Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for rootfile (0.26 sec)

  1. src/internal/coverage/cfile/emit.go

    // if something went wrong. See the comment on the emitState type
    // definition above for more on how file opening is managed.
    func (s *emitState) openMetaFile(metaHash [16]byte, metaLen uint64) error {
    
    	// Open meta-outfile for reading to see if it exists.
    	fn := fmt.Sprintf("%s.%x", coverage.MetaFilePref, metaHash)
    	s.mfname = filepath.Join(s.outdir, fn)
    	fi, err := os.Stat(s.mfname)
    	if err != nil || fi.Size() != int64(metaLen) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,SAControllerConfiguration,ConcurrentSATokenSyncs
    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,SAControllerConfiguration,RootCAFile
    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,SAControllerConfiguration,ServiceAccountKeyFile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		moduledata.AddUint(ctxt.Arch, 0)
    	}
    
    	if len(ctxt.Shlibs) > 0 {
    		thismodulename := filepath.Base(*flagOutfile)
    		switch ctxt.BuildMode {
    		case BuildModeExe, BuildModePIE:
    			// When linking an executable, outfile is just "a.out". Make
    			// it something slightly more comprehensible.
    			thismodulename = "the executable"
    		}
    		addgostring(ctxt, ldr, moduledata, "go:link.thismodulename", thismodulename)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                }
                task resolve(type: InputTask) {
                    inValue = configurations.implementation.elements.map { files -> files.collect { it.asFile.text.toInteger() } }
                    outFile = file('out.txt')
                }
            """
    
            given:
            configurationCacheRun(":resolve")
    
            when:
            configurationCacheRun(":resolve")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	// dwarf combining and UUID update).
    	updateMachoOutFile := func(op string, updateFunc machoUpdateFunc) {
    		// For os.Rename to work reliably, must be in same directory as outfile.
    		rewrittenOutput := *flagOutfile + "~"
    		exef, err := os.Open(*flagOutfile)
    		if err != nil {
    			Exitf("%s: %s failed: %v", os.Args[0], op, err)
    		}
    		defer exef.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     0,
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"RootCAFile": {
    						SchemaProps: spec.SchemaProps{
    							Description: "rootCAFile is the root certificate authority will be included in service account's token secret. This must be a valid PEM-encoded CA bundle.",
    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top