Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 399 for below (0.04 sec)

  1. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	// statement or "if" statement simple expressions (see more on
    	// "simple" expression classification below).
    	ParamFeedsIfOrSwitch
    
    	// Parameter value feeds unmodified into a "switch" or "if"
    	// statement simple expressions (see more on "simple" expression
    	// classification below), where the if/switch is
    	// conditional/nested.
    	ParamMayFeedIfOrSwitch
    )
    
    type ResultPropBits uint32
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/internal/coverage/pkid.go

    // and "internal/goexperiment" ; the developer in question will need
    // to copy the list above into "rtPkgs" below.
    //
    // Note: this strategy assumes that the list of dependencies of
    // package runtime is fixed, and doesn't vary depending on OS/arch. If
    // this were to be the case, we would need a table of some sort below
    // as opposed to a fixed list.
    
    var rtPkgs = [...]string{
    	"internal/cpu",
    	"internal/goarch",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.library-conventions.gradle.kts

        repositories {
            maven {
                name = "myOrgPrivateRepo"
                url = uri("build/my-repo")
            }
        }
    }
    
    // The project requires libraries to have a README containing sections configured below
    // tag::use-java-class[]
    val readmeCheck by tasks.registering(com.example.ReadmeVerificationTask::class) {
        readme = layout.projectDirectory.file("README.md")
        readmePatterns = listOf("^## API$", "^## Changelog$")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 996 bytes
    - Viewed (0)
  4. prow/config/calico.md

    ```shell
    sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml
    ```
    
    In order to upgrade versions of calico we'll need to update the version below and then have someone with the ability to push run the following:
    
    ```shell
    export VERSION=v3.27.0
    
    crane cp {docker.io,gcr.io/istio-testing}/calico/cni:"${VERSION}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 793 bytes
    - Viewed (0)
  5. test/fixedbugs/issue15277.go

    		println("after alloc: expected delta at least 9MB, got: ", delta)
    	}
    	runtime.KeepAlive(x)
    	x = nil
    	if delta := inuse() - start; delta > 1<<20 {
    		println("after drop: expected delta below 1MB, got: ", delta)
    	}
    	x = new(big)
    	if delta := inuse() - start; delta < 9<<20 {
    		println("second alloc: expected delta at least 9MB, got: ", delta)
    	}
    	runtime.KeepAlive(x)
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 851 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/internal/testdata/BUILD

        licenses = ["notice"],
    )
    
    # Run this binary manually, with an argument pointing to the testdata/
    # directory, to generate the test files used by the filegroup rule below.
    py_strict_binary(
        name = "gen_saved_models",
        srcs = ["gen_saved_models.py"],
        python_version = "PY3",
        deps = [
            "//tensorflow/python/compat:v2_compat",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/constdecl.go

    const A /* ERROR "initialization cycle" */ = unsafe.Sizeof(func() { _ = A })
    
    func _() {
    	// The function literal below must not see a.
    	const a = unsafe.Sizeof(func() { _ = a /* ERROR "undefined" */ })
    	const b = unsafe.Sizeof(func() { _ = a })
    
    	// The function literal below must not see x, y, or z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.library-conventions.gradle

        }
        repositories {
            maven {
                name "myOrgPrivateRepo"
                url 'build/my-repo'
            }
        }
    }
    
    // The project requires libraries to have a README containing sections configured below
    // tag::use-java-class[]
    def readmeCheck = tasks.register('readmeCheck', com.example.ReadmeVerificationTask) {
        // Expect the README in the project directory
        readme = layout.projectDirectory.file("README.md")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. hack/verify-vendor.sh

        echo "Your go.mod file is different:" >&2
        echo "${_out}" >&2
        echo "Vendor Verify failed." >&2
        echo "If you're seeing this locally, run the below command to fix your go.mod:" >&2
        echo "hack/update-vendor.sh" >&2
        ret=1
      fi
    
      if ! _out="$(diff -Naupr -x "AUTHORS*" -x "CONTRIBUTORS*" vendor "${_kubetmp}/vendor")"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.library-conventions.gradle.kts

        repositories {
            maven {
                name = "myOrgPrivateRepo"
                url = uri("build/my-repo")
            }
        }
    }
    
    // The project requires libraries to have a README containing sections configured below
    // tag::use-java-class[]
    val readmeCheck by tasks.registering(com.example.ReadmeVerificationTask::class) {
        readme = layout.projectDirectory.file("README.md")
        readmePatterns = listOf("^## API$", "^## Changelog$")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 996 bytes
    - Viewed (0)
Back to top