Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for runNames (0.13 sec)

  1. src/cmd/fix/fix.go

    func isTopName(n ast.Expr, name string) bool {
    	id, ok := n.(*ast.Ident)
    	return ok && id.Name == name && id.Obj == nil
    }
    
    // renameTop renames all references to the top-level name old.
    // It reports whether it makes any changes.
    func renameTop(f *ast.File, old, new string) bool {
    	var fixed bool
    
    	// Rename any conflicting imports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    import _ "fmt"
    import _ "fmt"
    
    import "foo"  // a comment
    import "bar"  // a comment
    
    import (
    	_ "foo"
    	// a comment
    	"bar"
    	"foo"  // a comment
    	"bar"  // a comment
    )
    
    // comments + renames
    import (
           "unrenamed" // a comment
           renamed "renameMe"
           . "io" /* a comment */
           _ "io/ioutil" // a comment
           "io" // testing alignment
           . "os"
           // a comment
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    // A compilation error at this line likely means your copy of the
    // proto package needs to be updated.
    const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
    
    // Renames a field from v1beta1 ExampleRequest.
    type ExampleRequest struct {
    	Request              string   `protobuf:"bytes,1,opt,name=request,proto3" json:"request,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  4. docs/bigdata/README.md

    they do with HDFS. These workloads rely on HDFS atomic rename functionality to complete writing data to the datastore. Object storage operations are atomic by nature and they do not require/implement rename API. The default S3A committer emulates renames through copy and delete APIs. This interaction pattern causes significant loss of performance because of the write amplification. _Netflix_, for example, developed two new staging committers - the Directory staging committer and the Partitioned staging...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  5. pkg/kubelet/pleg/generic.go

    	"k8s.io/utils/clock"
    )
    
    // GenericPLEG is an extremely simple generic PLEG that relies solely on
    // periodic listing to discover container changes. It should be used
    // as temporary replacement for container runtimes do not support a proper
    // event generator yet.
    //
    // Note that GenericPLEG assumes that a container would not be created,
    // terminated, and garbage collected within one relist period. If such an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux.go

    			// Here we'll send an node event with specific reason and message, the
    			// administrator should decide whether and how to handle this issue,
    			// whether to drain the node and restart docker.  Occurs in other container runtimes
    			// as well.
    			// TODO(random-liu): Remove this when the docker bug is fixed.
    			const message = "CRI error: /sys is read-only: " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. src/go/types/api.go

    	// The following node and object types may appear:
    	//
    	//     node               declared object
    	//
    	//     *ast.ImportSpec    *PkgName for imports without renames
    	//     *ast.CaseClause    type-specific *Var for each type switch case clause (incl. default)
    	//     *ast.Field         anonymous parameter *Var (incl. unnamed results)
    	//
    	Implicits map[ast.Node]Object
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api.go

    	// The following node and object types may appear:
    	//
    	//     node               declared object
    	//
    	//     *syntax.ImportDecl    *PkgName for imports without renames
    	//     *syntax.CaseClause    type-specific *Var for each type switch case clause (incl. default)
    	//     *syntax.Field         anonymous parameter *Var (incl. unnamed results)
    	//
    	Implicits map[syntax.Node]Object
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/go/printer/testdata/declarations.golden

    import _ "fmt"
    import _ "fmt"
    
    import "foo"	// a comment
    import "bar"	// a comment
    
    import (
    	_ "foo"
    	// a comment
    	"bar"
    	"foo"	// a comment
    	"bar"	// a comment
    )
    
    // comments + renames
    import (
    	"unrenamed"	// a comment
    	renamed "renameMe"
    	. "io"		/* a comment */
    	_ "io/ioutil"	// a comment
    	"io"		// testing alignment
    	. "os"
    	// a comment
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/wasm/asm.go

    	// overhead of adding a new segment (same as wasm-opt's memory-packing optimization uses).
    	const segmentOverhead = 8
    
    	// Generate at most this many segments. A higher number of segments gets rejected by some WebAssembly runtimes.
    	const maxNumSegments = 100000
    
    	var segments []*dataSegment
    	for secIndex, ds := range dataSects {
    		data := ds.data
    		offset := int32(ds.sect.Vaddr)
    
    		// skip leading zeroes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top