Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for scope_ (0.13 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     *
     * <p>Service interfaces can be annotated with {@link org.gradle.internal.service.scopes.StatefulListener} to indicate that services instances that implement the interface should
     * be registered as a listener of that type. Alternatively, service implementations can be annotated with {@link org.gradle.internal.service.scopes.ListenerService} to indicate that the should be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    type PropChangeParams struct {
    	ClassInstallHeader ClassInstallHeader
    	StateChange        DICS_STATE
    	Scope              DICS_FLAG
    	HwProfile          uint32
    }
    
    // DI_REMOVEDEVICE specifies the scope of the device removal
    type DI_REMOVEDEVICE uint32
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    This is particularly useful if you develop and publish Java libraries with Gradle where the separation between `api` and `implementation` dependencies is reflected in the published scopes.
    
    [[rel5.0:changes_to_default_task]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. kotlin-js-store/yarn.lock

      integrity sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==
      dependencies:
        "@types/node" "*"
    
    "@types/eslint-scope@^3.7.3":
      version "3.7.4"
      resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16"
      integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==
      dependencies:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  5. common/scripts/metallb-native.yaml

      creationTimestamp: null
      name: bfdprofiles.metallb.io
    spec:
      group: metallb.io
      names:
        kind: BFDProfile
        listKind: BFDProfileList
        plural: bfdprofiles
        singular: bfdprofile
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.passiveMode
          name: Passive Mode
          type: boolean
        - jsonPath: .spec.transmitInterval
          name: Transmit Interval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Container scope
    ====
    include::sample[dir="snippets/kotlinDsl/containers-scope/kotlin",files="build.gradle.kts[tags=scope]"]
    ====
    
    // TODO decide if we should document this given the current limitation
    // === The container scope string invoke extension
    //
    // .The container scope string invoke extension
    // ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // For more information on TIPC, see: http://tipc.sourceforge.net/.
    type SockaddrTIPC struct {
    	// Scope is the publication scopes when binding service/service range.
    	// Should be set to TIPC_CLUSTER_SCOPE or TIPC_NODE_SCOPE.
    	Scope int
    
    	// Addr is the type of address used to manipulate a socket. Addr must be
    	// one of:
    	//  - *TIPCSocketAddr: "id" variant in the C addr union
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        # Create a new scope in case the local variables are leaked.
        self.symbol_table.enter_scope(scf_scope=True)
        self.visit_block(body_def.body)
        self.visit_block(get_state.body)
        self.symbol_table.exit_scope()
    
        self.emit('\n} else {')
    
        # Create a new scope in case the local variables are leaked.
        self.symbol_table.enter_scope(scf_scope=True)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    	} else {
    		allErrors = append(allErrors, validateResourcesNoSubResources(rule.Resources, fldPath.Child("resources"))...)
    	}
    	if rule.Scope != nil && !validScopes.Has(string(*rule.Scope)) {
    		allErrors = append(allErrors, field.NotSupported(fldPath.Child("scope"), *rule.Scope, validScopes.List()))
    	}
    	return allErrors
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        inline fun addNetworkInterceptor(crossinline block: (chain: Interceptor.Chain) -> Response) =
          addNetworkInterceptor(Interceptor { chain -> block(chain) })
    
        /**
         * Configure a single client scoped listener that will receive all analytic events for this
         * client.
         *
         * @see EventListener for semantics and restrictions on listener implementations.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top