Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 339 for content_es (0.12 sec)

  1. docker/Dockerfile.distroless

    FROM cgr.dev/chainguard/static@sha256:873e9709e2a83acc995ff24e71c100480f9c0368e0d86eaee9c3c7cb8fb5f0e0 as distroless_source
    
    # prepare a base dev to modify file contents
    FROM ubuntu:noble as ubuntu_source
    
    # Modify contents of container
    COPY --from=distroless_source /etc/ /home/etc
    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  2. src/debug/dwarf/open.go

    // DWARF 5 and later.
    func (d *Data) AddSection(name string, contents []byte) error {
    	var err error
    	switch name {
    	case ".debug_addr":
    		d.addr = contents
    	case ".debug_line_str":
    		d.lineStr = contents
    	case ".debug_str_offsets":
    		d.strOffsets = contents
    	case ".debug_rnglists":
    		d.rngLists = contents
    	}
    	// Just ignore names that we don't yet support.
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasherTest.groovy

    class LineEndingNormalizingFileSystemLocationSnapshotHasherTest extends Specification {
        @TempDir
        File tempDir
    
        def "calculates hash for text file with #description"() {
            def file = file('foo') << contents
            def delegate = Mock(LineEndingNormalizingFileSystemLocationSnapshotHasher)
            def hasher = LineEndingNormalizingFileSystemLocationSnapshotHasher.wrap(delegate, LineEndingSensitivity.NORMALIZE_LINE_ENDINGS)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/distribution/groovy/build.gradle

    // tag::publishing[]
        id 'ivy-publish'
    }
    // end::publishing[]
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    distributions {
        main {
            contents {
                from 'src'
            }
        }
        custom {
            contents {
                from 'src'
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            myDistribution(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 659 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `ivy-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<IvyPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `maven-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<MavenPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    		contents := s[2 : len(s)-2]
    		switch contents {
    		case "underscores":
    			return "__"
    		case "dot":
    			return "."
    		case "dash":
    			return "-"
    		case "slash":
    			return "/"
    		}
    		if celReservedSymbols.Has(contents) {
    			if len(s) != len(escaped) {
    				ok = false
    			}
    			return contents
    		}
    		ok = false
    		return ""
    	})
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/diff_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    )
    
    func createTestRunDiffFile(contents []byte) (string, error) {
    	file, err := os.CreateTemp("", "kubeadm-upgrade-diff-config-*.yaml")
    	if err != nil {
    		return "", errors.Wrap(err, "failed to create temporary test file")
    	}
    	if _, err := file.Write(contents); err != nil {
    		return "", errors.Wrap(err, "failed to write to temporary test file")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 04:08:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pkg/test/util/file/file.go

    		}
    		if err != nil {
    			return "", err
    		}
    		if hdr.Name != strings.TrimSuffix(filepath.Base(filePath), filepath.Ext(filePath)) {
    			continue
    		}
    		contents, err := io.ReadAll(tr)
    		if err != nil {
    			return "", err
    		}
    		return string(contents), nil
    	}
    	return "", fmt.Errorf("file not found %v", filePath)
    }
    
    // ReadDir returns the names of all files in the given directory. This is not recursive.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/fingerprinting_utils.h

            field_tags);
    
    // Hashes the contents of `graph_def`.
    absl::StatusOr<uint64_t> HashGraphDef(
        tensorflow::GraphDef* graph_def,
        const ::tensorflow::proto_splitter::ChunkedMessage& chunked_message,
        riegeli::RecordReader<riegeli::FdReader<>>& reader,
        const std::vector<::tensorflow::proto_splitter::ChunkInfo>& chunks_info);
    
    // Hashes the contents of `signature_def`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top