Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 164 for name_$ (0.53 sec)

  1. src/cmd/fix/fix.go

    		switch d := d.(type) {
    		case *ast.FuncDecl:
    			if d.Recv == nil && d.Name.Name == old {
    				d.Name.Name = new
    				d.Name.Obj.Name = new
    				fixed = true
    			}
    		case *ast.GenDecl:
    			for _, s := range d.Specs {
    				switch s := s.(type) {
    				case *ast.TypeSpec:
    					if s.Name.Name == old {
    						s.Name.Name = new
    						s.Name.Obj.Name = new
    						fixed = true
    					}
    				case *ast.ValueSpec:
    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. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    If conflicts arise, the way to resolve them is by changing the _build name_ of an included build:
    
    .settings.gradle.kts
    [source,kotlin]
    ----
    includeBuild("some-included-build") {
        name = "other-name"
    }
    ----
    
    [NOTE]
    ====
    When a composite build is included in another composite build, both builds have the same parent.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // don't inherit from TestInfo.
      ~TestInfo();
    
      // Returns the test case name.
      const char* test_case_name() const { return test_case_name_.c_str(); }
    
      // Returns the test name.
      const char* name() const { return name_.c_str(); }
    
      // Returns the name of the parameter type, or NULL if this is not a typed
      // or a type-parameterized test.
      const char* type_param() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // don't inherit from TestInfo.
      ~TestInfo();
    
      // Returns the test case name.
      const char* test_case_name() const { return test_case_name_.c_str(); }
    
      // Returns the test name.
      const char* name() const { return name_.c_str(); }
    
      // Returns the name of the parameter type, or NULL if this is not a typed
      // or a type-parameterized test.
      const char* type_param() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/util.go

    	}
    }
    
    func (a *Addr) WriteNameTo(w io.Writer) {
    	a.writeNameTo(w, false)
    }
    
    func (a *Addr) writeNameTo(w io.Writer, abiDetail bool) {
    
    	switch a.Name {
    	default:
    		fmt.Fprintf(w, "name=%d", a.Name)
    
    	case NAME_NONE:
    		switch {
    		case a.Reg == REG_NONE:
    			fmt.Fprint(w, a.Offset)
    		case a.Offset == 0:
    			fmt.Fprintf(w, "(%v)", Rconv(int(a.Reg)))
    		case a.Offset != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunction.ir.txt

          VALUE_PARAMETER name:a index:0 type:kotlin.Int
          VALUE_PARAMETER name:b index:1 type:kotlin.String
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
            FUN LOCAL_FUNCTION name:call visibility:local modality:FINAL <> (a:kotlin.Int, b:kotlin.String) returnType:kotlin.Unit
              VALUE_PARAMETER name:a index:0 type:kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    - its API for Java 8 consumers (named `apiJava8Elements`) with attribute `org.gradle.usage=java-api` and `org.gradle.jvm.version=8`
    - its runtime for Java 8 consumers (named `runtime8Elements`) with attribute `org.gradle.usage=java-runtime` and `org.gradle.jvm.version=8`
    - its API for Java 11 consumers (named `apiJava11Elements`) with attribute `org.gradle.usage=java-api` and `org.gradle.jvm.version=11`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. statement_test.go

    	for k, v := range map[string][]string{
    		"table.name":         {"table", "name"},
    		"`table`.`name`":     {"table", "name"},
    		"'table'.'name'":     {"table", "name"},
    		"'table'.name":       {"table", "name"},
    		"table1.name_23":     {"table1", "name_23"},
    		"`table_1`.`name23`": {"table_1", "name23"},
    		"'table23'.'name_1'": {"table23", "name_1"},
    		"'table23'.name1":    {"table23", "name1"},
    		"'name1'":            {"", "name1"},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Dec 23 13:19:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue62157.go

    	f(B, b, a)
    
    	// Differently named channel types conflict irrespective of channel direction.
    	f(A, B /* ERROR "type namedB of B does not match inferred type namedA for T" */)
    	f(B, A /* ERROR "type namedA of A does not match inferred type namedB for T" */)
    
    	// Ensure that all combinations of directional and
    	// bidirectional channels with a named directional
    	// channel lead to the correct (named) directional
    	// channel.
    	B = f(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosure.ir.txt

        FUN name:consume visibility:public modality:FINAL <> (n:kotlin.Int) returnType:kotlin.Unit
          VALUE_PARAMETER name:n index:0 type:kotlin.Int
          BLOCK_BODY
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
            VAR name:x type:kotlin.Int [val]
              CONST Int type=kotlin.Int value=0
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top