Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for absDate (0.31 sec)

  1. src/cmd/cgo/ast.go

    				}
    				if cg != nil {
    					if strings.ContainsAny(abspath, "\r\n") {
    						// This should have been checked when the file path was first resolved,
    						// but we double check here just to be sure.
    						fatalf("internal error: ParseGo: abspath contains unexpected newline character: %q", abspath)
    					}
    					f.Preamble += fmt.Sprintf("#line %d %q\n", sourceLine(cg), abspath)
    					f.Preamble += commentText(cg) + "\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. pkg/test/fakes/gce_metadata_server/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    .PHONY: build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    IMG ?= gcr.io/istio-testing/fake-gce-metadata
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                        c.named("element", ElementRules)
                    }
                }
    
            when:
            registry.atState(ModelPath.path("beans"), ModelNode.State.SelfClosed)
    
            then:
            events == ["collection mutated"]
    
            when:
            registry.atState(ModelPath.path("beans"), ModelNode.State.GraphClosed)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  4. src/path/filepath/path_test.go

    		t.Fatalf("%s: %s", root, err)
    	}
    
    	abspath, err := filepath.Abs("")
    	if err != nil {
    		t.Fatalf(`Abs("") error: %v`, err)
    	}
    	absinfo, err := os.Stat(abspath)
    	if err != nil || !os.SameFile(absinfo, info) {
    		t.Errorf(`Abs("")=%q, not the same file`, abspath)
    	}
    	if !filepath.IsAbs(abspath) {
    		t.Errorf(`Abs("")=%q, not an absolute path`, abspath)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/config.go

    			if decodedConfig.Plugins[i].Path == "" {
    				continue
    			}
    			// we update relative file paths to absolute paths
    			absPath, err := makeAbs(decodedConfig.Plugins[i].Path, baseDir)
    			if err != nil {
    				return nil, err
    			}
    			decodedConfig.Plugins[i].Path = absPath
    		}
    		return configProvider{
    			config: decodedConfig,
    		}, nil
    	}
    	// we got an error where the decode wasn't related to a missing type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/config_test.go

    						Name: "ImagePolicyWebhook",
    						Path: imagePolicyWebhookFile,
    					},
    					{
    						Name: "ResourceQuota",
    					},
    				},
    			},
    			PluginNames: []string{},
    		},
    		"v1alpha1 configuration - abspath": {
    			ConfigBody: `{
    "apiVersion": "apiserver.k8s.io/v1alpha1",
    "kind": "AdmissionConfiguration",
    "plugins": [
      {"name": "ImagePolicyWebhook", "path": "/tmp/image-policy-webhook.json"},
      {"name": "ResourceQuota"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. src/cmd/covdata/metamerge.go

    			fatal("error closing output meta-data file %s: %v", fpath, err)
    		}
    	}()
    
    	args := mm.astate.ArgsSummary()
    	cfw := encodecounter.NewCoverageDataWriter(cf, coverage.CtrULeb128)
    	if err := cfw.Write(metaHash, args, mm); err != nil {
    		fatal("counter file write failed: %v", err)
    	}
    	mm.astate = &argstate{}
    }
    
    // VisitFuncs is used while writing the counter data files; it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. pkg/test/fakes/imageregistry/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    .PHONY: build build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    HUB ?= gcr.io/istio-testing
    IMG := $(HUB)/fake-registry
    BIN_NAME := main
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/go/internal/srcimporter/srcimporter.go

    	return parser.ParseFile(p.fset, filepath.Join(tmpdir, "_cgo_gotypes.go"), nil, parser.SkipObjectResolution)
    }
    
    // context-controlled file system operations
    
    func (p *Importer) absPath(path string) (string, error) {
    	// TODO(gri) This should be using p.ctxt.AbsPath which doesn't
    	// exist but probably should. See also issue #14282.
    	return filepath.Abs(path)
    }
    
    func (p *Importer) isAbsPath(path string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:54:32 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/test/fixtures/BaseInstanceFixtureSupport.groovy

                .descriptor(new SimpleModelRuleDescriptor("<create $name>"))
            modelRegistry.register(registration.build())
    
            return modelRegistry.atState(name, ModelNode.State.Initialized)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top