Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,784 for layers (0.22 sec)

  1. samples/bookinfo/README.md

    ...
     => [examples-bookinfo-productpage-v-flooding] exporting to docker image format                                                                                                                      10.4s
     => => exporting layers                                                                                                                                                                               0.0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/runningsds_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/metrics_no_statsd_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/bootstrap/testdata/tracing_lightstep_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/tracing_tls_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/wasm/httpfetcher.go

    	ret, err := io.ReadAll(zr)
    	if err != nil {
    		return nil
    	}
    	return ret
    }
    
    // Just do the best effort.
    // If an error is encountered, just return the original bytes.
    // Errors will be handled upper layers.
    func unboxIfPossible(origin []byte) []byte {
    	b := origin
    	for {
    		if isValidWasmBinary(b) {
    			return b
    		} else if isGZ(b) {
    			if b = getFileFromGZ(b); b == nil {
    				return origin
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_image.go

    		return err
    	}
    
    	return nil
    }
    
    // ImageStats returns the statistics of the image.
    // Notice that current logic doesn't really work for images which share layers (e.g. docker image),
    // this is a known issue, and we'll address this by getting imagefs stats directly from CRI.
    // TODO: Get imagefs stats directly from CRI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows_test.go

    	// Regression test for https://github.com/golang/go/issues/60051.
    
    	// The length of a filename is also limited, so we can't reproduce the
    	// crash by creating a single directory with a very long name; we need two
    	// layers.
    	a200 := strings.Repeat("a", 200)
    	dirname := filepath.Join(t.TempDir(), a200, a200)
    
    	err := os.MkdirAll(dirname, 0o700)
    	if err != nil {
    		t.Skipf("MkdirAll failed: %v", err)
    	}
    	err = os.Chdir(dirname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            noBuildTriggered()
    
            when:
            sourceFile.text = "class Thing {}"
    
            then:
            buildTriggeredAndSucceeded()
        }
    
        // Just exercises the dependency management layers to shake out any weirdness
        @Requires(UnitTestPreconditions.Online)
        def "can resolve dependencies from remote repository"() {
            when:
            def sourceFile = file("src/main/java/Thing.java") << "class Thing {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_tls_custom_sni_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top