Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for regNames (0.5 sec)

  1. cmd/prepare-storage.go

    		go removeAll(file)
    	}
    
    	// Remove the entire folder in case there are leftovers that didn't get cleaned up before restart.
    	go removeAll(pathJoin(diskPath, minioMetaTmpBucket+"-old"))
    
    	// Renames and schedules for purging all bucket metacache.
    	go renameAllBucketMetacache(diskPath)
    }
    
    // Following error message is added to fix a regression in release
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

      while (symbol_table.lookup(new_func_name)) {
        suffix_id++;
        new_func_name = absl::StrCat(main_func_name.str(), "_", suffix_id);
      }
    
      return new_func_name;
    }
    
    // Renames the existing @main function to avoid conflict with the newly
    // created main function. When it is renamed, its usages will also be replaced.
    // It will be renamed by attaching a number suffix like `@main_{i}`, until there
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.completed(2, { it.resultType == null })
            1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        def "executes a JUnit 3 test class that renames itself"() {
            when:
            process(AJunit3TestThatRenamesItself)
    
            then:
            1 * processor.started({ it.id == 1 }, { it.parentId == null })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  10. 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)
Back to top