Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for retract (0.39 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    func warnRule(cond bool, v *Value, s string) bool {
    	if pos := v.Pos; pos.Line() > 1 && cond {
    		v.Block.Func.Warnl(pos, s)
    	}
    	return true
    }
    
    // for a pseudo-op like (LessThan x), extract x.
    func flagArg(v *Value) *Value {
    	if len(v.Args) != 1 || !v.Args[0].Type.IsFlags() {
    		return nil
    	}
    	return v.Args[0]
    }
    
    // arm64Negate finds the complement to an ARM64 condition code,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	actual := sets.New[string]()
    	for _, c := range fakeRuntime.Containers {
    		actual.Insert(c.Id)
    	}
    	return actual, actual.Equal(expected)
    }
    
    // Only extract the fields of interests.
    type cRecord struct {
    	name    string
    	attempt uint32
    	state   runtimeapi.ContainerState
    }
    
    type cRecordList []*cRecord
    
    func (b cRecordList) Len() int      { return len(b) }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    func coveragePercentage(out []byte) string {
    	if !cfg.BuildCover {
    		return ""
    	}
    	// The string looks like
    	//	test coverage for encoding/binary: 79.9% of statements
    	// Extract the piece from the percentage to the end of the line.
    	re := regexp.MustCompile(`coverage: (.*)\n`)
    	matches := re.FindSubmatch(out)
    	if matches == nil {
    		// Probably running "go test -cover" not "go test -cover fmt".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    		break
    	}
    	if hostLinkLine == "" {
    		t.Fatal(`fail to find with "host link:" string in linker output`)
    	}
    	// Find parameter, like "/tmp/go-link-408556474/go.o" inside of
    	// "host link:" line, and extract temp directory /tmp/go-link-408556474
    	// out of it.
    	tmpdir := hostLinkLine
    	i := strings.Index(tmpdir, `go.o"`)
    	if i == -1 {
    		t.Fatalf(`fail to find "go.o" in "host link:" line %q`, hostLinkLine)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

            project.distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    ```
    
    ```groovy
    configurations {
        conf
    }
    
    // Extract the script-level closure to the script root scope.
    configurations.conf.incoming.afterResolve {
        distributions {
            myDist {
                contents {}
            }
        }
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    	}
    	q1.Qualifiers = rq
    	return q1
    }
    
    // qualifiers maps from the character used in the mangled name to the
    // string to print.
    var qualifiers = map[byte]string{
    	'r': "restrict",
    	'V': "volatile",
    	'K': "const",
    }
    
    // cvQualifiers parses:
    //
    //	<CV-qualifiers> ::= [r] [V] [K]
    func (st *state) cvQualifiers() AST {
    	var q []AST
    qualLoop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/reflect/type.go

    // Package reflect implements run-time reflection, allowing a program to
    // manipulate objects with arbitrary types. The typical use is to take a value
    // with static type interface{} and extract its dynamic type information by
    // calling TypeOf, which returns a Type.
    //
    // A call to ValueOf returns a Value representing the run-time data.
    // Zero takes a Type and returns a Value representing a zero value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		// the test cases expect at most one Implicits entry
    		if len(info.Implicits) > 1 {
    			t.Errorf("package %s: %d Implicits entries found", name, len(info.Implicits))
    			continue
    		}
    
    		// extract Implicits entry, if any
    		var got string
    		for n, obj := range info.Implicits {
    			switch x := n.(type) {
    			case *syntax.ImportDecl:
    				got = "importSpec"
    			case *syntax.CaseClause:
    				got = "caseClause"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		// the test cases expect at most one Implicits entry
    		if len(info.Implicits) > 1 {
    			t.Errorf("package %s: %d Implicits entries found", name, len(info.Implicits))
    			continue
    		}
    
    		// extract Implicits entry, if any
    		var got string
    		for n, obj := range info.Implicits {
    			switch x := n.(type) {
    			case *ast.ImportSpec:
    				got = "importSpec"
    			case *ast.CaseClause:
    				got = "caseClause"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    // by gcc to learn the details of the constants, variables, and types
    // being referred to as C.xxx.
    func (p *Package) loadDWARF(f *File, conv *typeConv, names []*Name) {
    	// Extract the types from the DWARF section of an object
    	// from a well-formed C program. Gcc only generates DWARF info
    	// for symbols in the object file, so it is not enough to print the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top