Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Replies (0.53 sec)

  1. src/net/http/server.go

    	w.WriteHeader(code)
    	fmt.Fprintln(w, error)
    }
    
    // NotFound replies to the request with an HTTP 404 not found error.
    func NotFound(w ResponseWriter, r *Request) { Error(w, "404 page not found", StatusNotFound) }
    
    // NotFoundHandler returns a simple request handler
    // that replies to each request with a “404 page not found” reply.
    func NotFoundHandler() Handler { return HandlerFunc(NotFound) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    		// the remaining parts.
    		partOffset = 0
    	} // End of read all parts loop.
    	// Return success.
    	return nil
    }
    
    // GetObjectInfo - reads object metadata and replies back ObjectInfo.
    func (er erasureObjects) GetObjectInfo(ctx context.Context, bucket, object string, opts ObjectOptions) (info ObjectInfo, err error) {
    	if !opts.NoAuditLog {
    		auditObjectErasureSet(ctx, object, &er)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. platforms/software/ivy/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("SamplesIvyPublishIntegrationTest test applies the java-library plugin.")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("IvyPublishCrossVersionIntegrationTest test applies the war plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/os/signal/doc.go

    signals and instead delivers them over one or more registered
    channels. Specifically, it applies to the signals SIGHUP, SIGINT,
    SIGQUIT, SIGABRT, and SIGTERM. It also applies to the job control
    signals SIGTSTP, SIGTTIN, and SIGTTOU, in which case the system
    default behavior does not occur. It also applies to some signals that
    otherwise cause no action: SIGUSR1, SIGUSR2, SIGPIPE, SIGALRM,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface ListenerService {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsExtensions.kt

    import org.gradle.api.Plugin
    import org.gradle.api.initialization.Settings
    import org.gradle.api.plugins.PluginAware
    import org.gradle.kotlin.dsl.support.serviceOf
    
    import kotlin.reflect.KProperty
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
     * The given class should implement the [Plugin] interface, and be parameterized for a
     * compatible type of `this`.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentUtils.java

    public final class AgentUtils {
        private AgentUtils() {}
    
        public static final String AGENT_MODULE_NAME = "gradle-instrumentation-agent";
    
        /**
         * Checks if the command-line argument looks like JVM switch that applies gradle instrumentation agent.
         * If the returned value is {@code true} then the argument is definitely a java agent application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client.go

    	}
    
    	meta, err := updateStatus(cl.client, cfg, getObjectMetadata(cfg))
    	if err != nil {
    		return "", err
    	}
    	return meta.GetResourceVersion(), nil
    }
    
    // Patch applies only the modifications made in the PatchFunc rather than doing a full replace. Useful to avoid
    // read-modify-write conflicts when there are many concurrent-writers to the same resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    };
    
    using BuiltinOperatorSet = absl::flat_hash_set<tflite::BuiltinOperator>;
    // Map from custom op code to custom op quantization information.
    using CustomOpMap = std::unordered_map<std::string, CustomOpInfo>;
    
    // Applies dynamic range quantization for the given model wehre the input_model
    // type is flatbuffer but is converted to MLIR during quantization process and
    // then converted back to flatbuffer for return. Note that this is part of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	return c.client.Delete().
    		Namespace(c.ns).
    		Resource("examples").
    		VersionedParams(&listOpts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Body(&opts).
    		Do(ctx).
    		Error()
    }
    
    // Patch applies the patch and returns the patched example.
    func (c *examples) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.Example, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top