Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 133 for expiring (0.15 sec)

  1. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo.go

    		},
    	})
    }
    
    // CreateClusterInfoRBACRules creates the RBAC rules for exposing the cluster-info ConfigMap in the kube-public namespace to unauthenticated users
    func CreateClusterInfoRBACRules(client clientset.Interface) error {
    	klog.V(1).Infoln("creating the RBAC rules for exposing the cluster-info ConfigMap in the kube-public namespace")
    	err := apiclient.CreateOrUpdateRole(client, &rbac.Role{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

                void file(VisitState state);
    
                /**
                 * Called when exiting a directory.
                 */
                void postDirectory();
    
                /**
                 * Called when exiting a root.
                 */
                void postRoot();
    
                /**
                 * Called when exiting a property.
                 */
                void postProperty();
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ContinuousBuildCrossVersionSpec.groovy

        }
    
        private String getExitingContinuousBuildNoInputsDetectedMessage() {
            return usesNativeWatchers()
                ? "Exiting continuous build as Gradle did not detect any file system inputs."
                : "Exiting continuous build as no executed tasks declared file system inputs."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/eastwest.go

    func (i *istioImpl) exposeUserServices(cluster cluster.Cluster) error {
    	scopes.Framework.Infof("Exposing services via eastwestgateway in %v", cluster.Name())
    	return cluster.ApplyYAMLFiles(i.cfg.SystemNamespace, exposeServicesGateway)
    }
    
    func (i *istioImpl) applyIstiodGateway(cluster cluster.Cluster, revision string) error {
    	scopes.Framework.Infof("Exposing istiod via eastwestgateway in %v", cluster.Name())
    	if revision == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. docs/multi-tenancy/README.md

    **Note**: On distributed systems, root credentials are recommend to be defined by exporting the `MINIO_ROOT_USER` and  `MINIO_ROOT_PASSWORD` environment variables. If no value is set MinIO setup will assume `minioadmin/minioadmin` as default credentials. If a domain is required, it must be specified by defining and exporting the `MINIO_DOMAIN` environment variable.
    
    ## Cloud Scale Deployment
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. src/runtime/pprof/defs_darwin.go

    // This file is used as input to cgo --godefs (GOOS=arm64 or amd64) to
    // generate the types used in viminfo_darwin_{arm64,amd64}.go which are
    // hand edited as appropriate, primarily to avoid exporting the types.
    
    //go:build ignore
    
    package pprof
    
    /*
    #include <sys/param.h>
    #include <mach/vm_prot.h>
    #include <mach/vm_region.h>
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 770 bytes
    - Viewed (0)
  7. pkg/util/filesystem/watcher.go

    		// in case the file changed concurrent with calling WatchUntil.
    		eventHandler()
    	}
    
    	for {
    		select {
    		case <-ctx.Done():
    			return
    
    		case <-t.C:
    			// Prioritize exiting if context is canceled
    			if ctx.Err() != nil {
    				return
    			}
    
    			// Try to re-establish the watcher if we previously got a watch error
    			if attemptPeriodicRewatch {
    				_ = watcher.Remove(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-bare-m.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoSyscall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 956 bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

         * @return The class realm hosting the Maven core, never {@code null}.
         */
        ClassRealm getCoreRealm();
    
        /**
         * Gets the class realm exposing the Maven API. This is basically a restricted view on the Maven core realm.
         *
         * @return The class realm exposing the Maven API, never {@code null}.
         */
        ClassRealm getMavenApiRealm();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/trace/goroutinegen.go

    		gs.created(ev.Time(), ev.Goroutine(), ev.Stack())
    	}
    	if from == trace.GoSyscall && to != trace.GoRunning {
    		// Exiting blocked syscall.
    		gs.syscallEnd(ev.Time(), true, ctx)
    		gs.blockedSyscallEnd(ev.Time(), ev.Stack(), ctx)
    	} else if from == trace.GoSyscall {
    		// Check if we're exiting a syscall in a non-blocking way.
    		gs.syscallEnd(ev.Time(), false, ctx)
    	}
    
    	// Handle syscalls.
    	if to == trace.GoSyscall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top