Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 220 for regular (0.12 sec)

  1. pkg/kubelet/kubelet_node_status.go

    	}
    
    	// This is in addition to the regular syncNodeStatus logic so we can get the container runtime status earlier.
    	// This function itself has a mutex and it doesn't recursively call fastNodeStatusUpdate or syncNodeStatus.
    	kl.updateRuntimeUp()
    
    	node, changed := kl.updateNode(ctx, originalNode)
    
    	if !changed {
    		// We don't do markVolumesFromNode(node) here and leave it to the regular syncNodeStatus().
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/html/template/doc.go

    	tmpl.Execute(out, template.HTML(`<b>World</b>`))
    
    to produce
    
    	Hello, <b>World</b>!
    
    instead of the
    
    	Hello, &lt;b&gt;World&lt;b&gt;!
    
    that would have been produced if {{.}} was a regular string.
    
    # Security Model
    
    https://rawgit.com/mikesamuel/sanitized-jquery-templates/trunk/safetemplate.html#problem_definition defines "safe" as used by this package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/testing/fstest/mapfs.go

    func (i *mapFileInfo) Info() (fs.FileInfo, error) { return i, nil }
    
    func (i *mapFileInfo) String() string {
    	return fs.FormatFileInfo(i)
    }
    
    // An openMapFile is a regular (non-directory) fs.File open for reading.
    type openMapFile struct {
    	path string
    	mapFileInfo
    	offset int64
    }
    
    func (f *openMapFile) Stat() (fs.FileInfo, error) { return &f.mapFileInfo, nil }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

            private ArtifactVerificationOperation.ArtifactKind determineArtifactKind(ComponentArtifactMetadata artifact) {
                ArtifactVerificationOperation.ArtifactKind artifactKind = ArtifactVerificationOperation.ArtifactKind.REGULAR;
                if (artifact instanceof ModuleDescriptorArtifactMetadata) {
                    artifactKind = ArtifactVerificationOperation.ArtifactKind.METADATA;
                }
                return artifactKind;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. hack/golangci-strict.yaml

          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
              # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
              #
              # By default, structured logging call parameters are checked, but usage of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/archive/tar/writer.go

    			return nil
    		}
    		info, err := d.Info()
    		if err != nil {
    			return err
    		}
    		// TODO(#49580): Handle symlinks when fs.ReadLinkFS is available.
    		if !info.Mode().IsRegular() {
    			return errors.New("tar: cannot add non-regular file")
    		}
    		h, err := FileInfoHeader(info, "")
    		if err != nil {
    			return err
    		}
    		h.Name = name
    		if err := tw.WriteHeader(h); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	SourceLine(addr uint64) ([]Frame, error)
    
    	// Symbols returns a list of symbols in the object file.
    	// If r is not nil, Symbols restricts the list to symbols
    	// with names matching the regular expression.
    	// If addr is not zero, Symbols restricts the list to symbols
    	// containing that address.
    	Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error)
    
    	// Close closes the file, releasing associated resources.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/testsupport.go

    		return fmt.Errorf("error reading auxmetafiles file %q: %v", metafiles, err)
    	}
    
    	// Walk through each available aux meta-file. If we've already
    	// seen the package path in question during the walk of the
    	// "regular" meta-data file, then we can skip the package,
    	// otherwise construct a dummy pod with the single meta-data file
    	// (no counters) and invoke processPod on it.
    	for i := range mfc.ImportPaths {
    		p := mfc.ImportPaths[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. hack/golangci.yaml

          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
              # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
              #
              # By default, structured logging call parameters are checked, but usage of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

     * this information will be available in the report.
     * <p>
     * While the regular dependencies report ({@link DependencyReportTask}) shows the path from the top level dependencies down through the transitive dependencies,
     * the dependency insight report shows the path from a particular dependency to the dependencies that pulled it in.
     * That is, it is an inverted view of the regular dependencies report.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top