Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,193 for addLine (0.11 sec)

  1. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            when:
            newBase.addInterface(stablePublicInterface)
    
            then:
            noViolation(rule)
        }
    
        def 'adding an #type interface can be reported'() {
            given:
            newBase.addInterface(interfaces[type])
    
            when:
            Violation violation = rule.maybeViolation(apiClass)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    The following sample creates a `custom` distribution that will cause four additional tasks to be added to the project: `customDistZip`, `customDistTar`, `assembleCustomDist`, and `installCustomDist`:
    
    .Adding extra distributions
    ====
    include::sample[dir="snippets/base/distribution/kotlin",files="build.gradle.kts[tags=custom-distribution]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/tests/dependencyReasonReport.out

       Selection reasons:
          - Was requested: we require a JDK 9 compatible bytecode generator
    
    org.ow2.asm:asm:7.1
    \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 846 bytes
    - Viewed (0)
  4. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    typedef struct TP_Profiler {
      size_t struct_size;
      void* ext;  // free-form data set by plugin.
      const char* device_type;
    
      // The struct size must be updated when adding new members.
    #define TP_PROFILER_STRUCT_SIZE TF_OFFSET_OF_END(TP_Profiler, device_type)
    } TP_Profiler;
    
    // --------------------------------------------------------------------------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

            """
        }
    
        static String getAnotherSoftwareTypeExtension() {
            return """
                package org.gradle.test;
    
                import org.gradle.declarative.dsl.model.annotations.Adding;
                import org.gradle.declarative.dsl.model.annotations.Configuring;
                import org.gradle.declarative.dsl.model.annotations.Restricted;
    
                import org.gradle.api.Action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/tests/runtimeClasspath.out

    project :producer FAILED
    \--- runtimeClasspath
    
    project :producer FAILED
    \--- runtimeClasspath
    
    project :producer FAILED
    \--- runtimeClasspath
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 712 bytes
    - Viewed (0)
  7. docs/en/docs/external-links.md

    {% for section_name, section_content in external_links.items() %}
    
    ## {{ section_name }}
    
    {% for lang_name, lang_content in section_content.items() %}
    
    ### {{ lang_name }}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_compiled_imports.txt

    cd x
    go list -f '{{.Imports}}'
    ! stdout runtime/cgo
    ! stdout unsafe
    ! stdout syscall
    stdout C
    stdout unicode
    stdout unicode/utf16
    
    # go list -compiled should report imports in compiled files as well,
    # adding "runtime/cgo", "unsafe", and "syscall" but not dropping "C".
    go list -compiled -f '{{.Imports}}'
    stdout runtime/cgo
    stdout unsafe
    stdout syscall
    stdout C
    stdout unicode
    stdout unicode/utf16
    
    -- x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 681 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

        }
    
        // The control dependency is held by the operand.
    // CHECK: tf_executor.island(%{{.*}})
        %add, %clt_add = tf_executor.island(%ctl_id) {
          %add_in= "tf.Add"(%0, %0) : (tensor<*xf32>, tensor<*xf32>) -> (tensor<*xf32>)
          tf_executor.yield %add_in : tensor<*xf32>
        }
    
        tf_executor.fetch %add : tensor<*xf32>
      }
      func.return %result : tensor<*xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_lazy_new_import.txt

    #
    # lazy ---- a.1 ---- b.1
    #              \
    #               c.1
    
    
    cp go.mod go.mod.old
    cp lazy.go lazy.go.old
    go mod tidy
    cmp go.mod go.mod.old
    
    # Before adding a new import, the go.mod file should
    # enumerate modules for all packages already imported.
    go list all
    cmp go.mod go.mod.old
    
    # When we add a new import of a package in an existing dependency,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 27 23:27:52 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top