Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for target01 (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/etag.go

    //
    // hash should be the value of calculateETag on object. If hash is empty, then
    // the object is simply serialized without E-Tag functionality
    func ServeHTTPWithETag(
    	object runtime.Object,
    	hash string,
    	targetGV schema.GroupVersion,
    	serializer runtime.NegotiatedSerializer,
    	w http.ResponseWriter,
    	req *http.Request,
    ) {
    	// ETag must be enclosed in double quotes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

    tasks.register('printMetadataRulesConfig') {
        FileCollection metadataRulesConfig = configurations.metadataRulesConfig
        doLast {
            metadataRulesConfig.each { println "Resolved: ${it.name}" }
        }
    }
    
    // tag::targeted-component-selection[]
    configurations {
        targetConfig {
            resolutionStrategy {
                componentSelection {
                    withModule("org.sample:api") { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

    tasks.register("printMetadataRulesConfig") {
        val metadataRulesConfig: FileCollection = configurations["metadataRulesConfig"]
        doLast {
            metadataRulesConfig.forEach { println("Resolved: ${it.name}") }
        }
    }
    
    // tag::targeted-component-selection[]
    configurations {
        create("targetConfig") {
            resolutionStrategy {
                componentSelection {
                    withModule("org.sample:api") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. internal/config/lambda/target/webhook.go

    }
    
    // ID - returns target ID.
    func (target *WebhookTarget) ID() event.TargetID {
    	return target.id
    }
    
    // IsActive - Return true if target is up and active
    func (target *WebhookTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    // errNotConnected - indicates that the target connection is not active.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. internal/event/target/nsq.go

    func (target *NSQTarget) Name() string {
    	return target.ID().String()
    }
    
    // Store returns any underlying store if set.
    func (target *NSQTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *NSQTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. cmd/event-notification.go

    	}
    	region := globalSite.Region()
    	for targetID, target := range evnot.targetList.TargetMap() {
    		// httpclient target is part of ListenNotification
    		// which doesn't need to be listed as part of the ARN list
    		// This list is only meant for external targets, filter
    		// this out pro-actively.
    		if !strings.HasPrefix(targetID.ID, "httpclient+") {
    			if onlyActive {
    				if _, err := target.IsActive(); err != nil {
    					continue
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableBinary.java

     * limitations under the License.
     */
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Incubating;
    
    import java.io.File;
    
    /**
     * A binary artifact for a {@link NativeExecutable}, targeted at a particular platform with specific configuration.
     */
    @Incubating
    public interface NativeExecutableBinary extends NativeBinary {
        /**
         * The executable file.
         */
        File getExecutableFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 984 bytes
    - Viewed (0)
  8. internal/event/target/mqtt.go

    func (target *MQTTTarget) Name() string {
    	return target.ID().String()
    }
    
    // Store returns any underlying store if set.
    func (target *MQTTTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *MQTTTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. internal/event/target/webhook.go

    }
    
    // ID - returns target ID.
    func (target *WebhookTarget) ID() event.TargetID {
    	return target.id
    }
    
    // Name - returns the Name of the target.
    func (target *WebhookTarget) Name() string {
    	return target.ID().String()
    }
    
    // IsActive - Return true if target is up and active
    func (target *WebhookTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinary.java

         * The {@link org.gradle.nativeplatform.Flavor} that this binary was built with.
         */
        Flavor getFlavor();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.platform.NativePlatform} that this binary is targeted to run on.
         */
        NativePlatform getTargetPlatform();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.BuildType} used to construct this binary.
         */
        BuildType getBuildType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top