Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 777 for content_es (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

        /**
         * Creates a new [FileTree] which contains the contents of the given ZIP file.
         *
         * The given `zipPath` path is evaluated as per [file]
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    						klog.Warningf("[reset] Failed to delete contents of the etcd directory: %q, error: %v", etcdDataDir, err)
    					} else {
    						fmt.Printf("[reset] Deleted contents of the etcd data directory: %v\n", etcdDataDir)
    					}
    				}
    			} else {
    				fmt.Println("[reset] Would remove the etcd member on this node from the etcd cluster")
    				fmt.Printf("[reset] Would delete contents of the etcd data directory: %v\n", etcdDataDir)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top