Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for extractID (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    // Bad returns the bad status of this page.
    // If this bit is 1, the page is has been reported as bad.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Bad() bool {
    	return (b & (1 << 31)) == 1
    }
    
    // intField extracts an integer field in the PSAPI_WORKING_SET_EX_BLOCK union.
    func (b PSAPI_WORKING_SET_EX_BLOCK) intField(start, length int) uint64 {
    	var mask PSAPI_WORKING_SET_EX_BLOCK
    	for pos := start; pos < start+length; pos++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    In order to do so, Gradle first normalizes both inputs and then compares the result.
    For example, for a compile classpath, Gradle extracts the ABI signature from the classes on the classpath and then compares signatures between the last Gradle run and the current Gradle run as described in <<java_plugin.adoc#sec:java_compile_avoidance,Java compile avoidance>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:not_yet_implemented:accessing_top_level_at_execution]]
    === Accessing top-level methods and variables of a build script at execution time
    
    A common approach to reuse logic and data in a build script is to extract repeating bits into top-level methods and variables.
    However, calling such methods at execution time is not currently supported if the configuration cache is enabled.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/model/push_context.go

    	// destinationRuleIndex is the index of destination rules by various fields.
    	destinationRuleIndex destinationRuleIndex
    
    	// gatewayIndex is the index of gateways.
    	gatewayIndex gatewayIndex
    
    	// clusterLocalHosts extracted from the MeshConfig
    	clusterLocalHosts ClusterLocalHosts
    
    	// sidecarIndex stores sidecar resources
    	sidecarIndex sidecarIndex
    
    	// envoy filters for each namespace including global config namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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