Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,163 for repeats (0.16 sec)

  1. src/archive/tar/strconv.go

    		f.err = ErrFieldTooLong
    	}
    
    	s := strconv.FormatInt(x, 8)
    	// Add leading zeros, but leave room for a NUL.
    	if n := len(b) - len(s) - 1; n > 0 {
    		s = strings.Repeat("0", n) + s
    	}
    	f.formatString(b, s)
    }
    
    // fitsInOctal reports whether the integer x fits in a field n-bytes long
    // using octal encoding with the appropriate NUL terminator.
    func fitsInOctal(n int, x int64) bool {
    	octBits := uint(n-1) * 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/tests/dependenciesWithBOM.out

    (c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree.
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/LegendRenderer.java

            }
            if (hasCyclicDependencies) {
                output.println();
                output.withStyle(Info).println("(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.");
            }
            if (hasUnresolvableConfigurations) {
                output.println();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 03 14:10:29 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

              \--- io.vertx:vertx-lang-groovy-gen:3.9.4
                   \--- io.vertx:vertx-lang-groovy:3.9.4
                        \--- runtimeClasspath
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    All other values in `dense` are set to `default_value`.  If `sparse_values` is a
    scalar, all sparse indices are set to this single value.
    
    Indices should be sorted in lexicographic order, and indices must not
    contain any repeats. If `validate_indices` is true, these properties
    are checked during execution.
      }];
    
      let arguments = (ins
        TFL_I32OrI64Tensor:$sparse_indices,
        TFL_I32OrI64Tensor:$output_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      // The encodingVersion must be included in the decodableVersions.
      // +listType=set
      repeated string decodableVersions = 3;
    
      // The API server can serve these versions.
      // DecodableVersions must include all ServedVersions.
      // +listType=set
      repeated string servedVersions = 4;
    }
    
    // Storage version of a specific resource.
    message StorageVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                constraint('commons-logging:commons-logging:1.2') { rejects() }
    
                dependency('org.apache.commons:commons-compress:1.5') {
                    rejects()
                    noMoreExcludes()
                }
                constraint('org.tukaani:xz:1.6') {
                    prefers(null)
                    strictly('1.6')
                    rejects()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. src/encoding/hex/hex_test.go

    		}
    	}
    }
    
    func TestEncoderDecoder(t *testing.T) {
    	for _, multiplier := range []int{1, 128, 192} {
    		for _, test := range encDecTests {
    			input := bytes.Repeat(test.dec, multiplier)
    			output := strings.Repeat(test.enc, multiplier)
    
    			var buf bytes.Buffer
    			enc := NewEncoder(&buf)
    			r := struct{ io.Reader }{bytes.NewReader(input)} // io.Reader only; not io.WriterTo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/embed.txt

    # build uses cache correctly
    go build -x
    ! stderr 'x.txt'
    cp x.txt2 x.txt
    go build -x
    stderr 'x.txt'
    
    # build rejects invalid names
    cp x.go2 x.go
    go build -x
    cp x.txt .git
    ! go build -x
    stderr '^x.go:5:12: pattern [*]t: cannot embed file [.]git: invalid name [.]git$'
    rm .git
    
    # build rejects symlinks
    [symlink] symlink x.tzt -> x.txt
    [symlink] ! go build -x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 18:03:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

            file(REPORT_XML_DEFAULT_PATH).exists()
            file(REPORT_CSV_DEFAULT_REPORT).exists()
        }
    
        def "respects reporting base dir"() {
            given:
            buildFile << """
                jacocoTestReport {
                    reports.xml.required = true
                    reports.csv.required = true
                }
                reporting{
                    baseDir = "\$buildDir/customReports"
                }"""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top