Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 677 for webroot (0.2 sec)

  1. src/net/http/triv.go

    	http.Error(w, "oops", http.StatusNotFound)
    }
    
    var webroot = flag.String("root", "", "web root directory")
    
    func main() {
    	flag.Parse()
    
    	// The counter is published as a variable directly.
    	ctr := new(Counter)
    	expvar.Publish("counter", ctr)
    	http.Handle("/counter", ctr)
    	http.Handle("/", http.HandlerFunc(Logger))
    	if *webroot != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

     * delegates methods in the closure to the child. Child CopySpecs inherit any values specified in the parent. This
     * allows constructs like:
     * <pre class='autoTested'>
     * def myCopySpec = project.copySpec {
     *   into('webroot')
     *   exclude('**&#47;.data/**')
     *   from('src/main/webapp') {
     *     include '**&#47;*.jsp'
     *   }
     *   from('src/main/js') {
     *     include '**&#47;*.js'
     *   }
     * }
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         *    from configurations.runtimeClasspath
         *    into 'build/deploy/lib'
         * }
         * </pre>
         * Note that CopySpecs can be nested:
         * <pre>
         * copy {
         *    into 'build/webroot'
         *    exclude '**&#47;.svn/**'
         *    from('src/main/webapp') {
         *       include '**&#47;*.jsp'
         *       filter(ReplaceTokens, tokens:[copyright:'2009', version:'2.3.1'])
         *    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. internal/event/target/webhook.go

    			return nil, fmt.Errorf("unable to initialize the queue store of Webhook `%s`: %w", id, err)
    		}
    	}
    
    	target := &WebhookTarget{
    		id:         event.TargetID{ID: id, Name: "webhook"},
    		args:       args,
    		loggerOnce: loggerOnce,
    		transport:  transport,
    		store:      queueStore,
    		cancel:     cancel,
    		cancelCh:   ctx.Done(),
    	}
    
    	// Calculate the webhook addr with the port number format
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/webhook.go

    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	s.httpsMux = http.NewServeMux()
    	s.httpsServer = &http.Server{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/client-go/rest"
    	"k8s.io/component-base/tracing"
    )
    
    const (
    	// PluginName is the name of this plugin, to be used in help and logs.
    	PluginName = "webhook"
    
    	// DefaultInitialBackoffDelay is the default amount of time to wait before
    	// retrying sending audit events through a webhook.
    	DefaultInitialBackoffDelay = 10 * time.Second
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	"k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/config"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/cel/environment"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    	maxControlledAttrCacheSize = 10000
    )
    
    // DefaultRetryBackoff returns the default backoff parameters for webhook retry.
    func DefaultRetryBackoff() *wait.Backoff {
    	backoff := webhook.DefaultRetryBackoffWithInitialDelay(500 * time.Millisecond)
    	return &backoff
    }
    
    // Ensure Webhook implements the authorizer.Authorizer interface.
    var _ authorizer.Authorizer = (*WebhookAuthorizer)(nil)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package webhook implements a generic HTTP webhook plugin.
    package webhook
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *    from configurations.runtimeClasspath
         *    into 'build/deploy/lib'
         * }
         * </pre>
         * Note that CopySpecs can be nested:
         * <pre>
         * copy {
         *    into 'build/webroot'
         *    exclude '**&#47;.svn/**'
         *    from('src/main/webapp') {
         *       include '**&#47;*.jsp'
         *       filter(ReplaceTokens, tokens:[copyright:'2009', version:'2.3.1'])
         *    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top