Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,389 for addLink (0.56 sec)

  1. 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)
  2. .github/workflows/trusted_partners.js

        issue_number: context.issue.number,
        owner: context.repo.owner,
        repo: context.repo.repo,
        labels: labels
      });
      if (resp_label.status >= 400) {
        console.log(resp_label);
        throw "Error adding labels to PR";
      }
      if (assignees.length > 0) {
        const resp_assign = await github.rest.issues.addAssignees({
          issue_number: context.issue.number,
          owner: context.repo.owner,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 07 13:52:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. 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)
  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/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    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 Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    				Extra:  map[string][]string{},
    			},
    			expectedCode: http.StatusOK,
    		},
    		{
    			name: "anonymous-username-prevents-adding-authenticated-group",
    			user: &user.DefaultInfo{
    				Name: "system:admin",
    			},
    			impersonationUser: "system:anonymous",
    			expectedUser: &user.DefaultInfo{
    				Name:   "system:anonymous",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/crypto/tls/fipsonly/fipsonly.go

    package fipsonly
    
    // This functionality is provided as a side effect of an import to make
    // it trivial to add to an existing program. It requires only a single line
    // added to an existing source file, or it can be done by adding a whole
    // new source file and not modifying any existing source files.
    
    import (
    	"crypto/internal/boring/fipstls"
    	"crypto/internal/boring/sig"
    )
    
    func init() {
    	fipstls.Force()
    	sig.FIPSOnly()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 901 bytes
    - Viewed (0)
Back to top