Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for walltime (0.1 sec)

  1. security/pkg/nodeagent/sds/server.go

    					serverOk = false
    				}
    			}
    			if serverOk && setUpUdsOK {
    				started = true
    				break
    			}
    			time.Sleep(waitTime)
    			waitTime *= 2
    		}
    		if !started {
    			sdsServiceLog.Warn("SDS grpc server could not be started")
    		}
    	}()
    }
    
    func (s *Server) grpcServerOptions() []grpc.ServerOption {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. doc/next/7-ports.md

    The `GORISCV64` environment variable defaults to `rva20u64`.
    
    ### Wasm {#wasm}
    
    <!-- go.dev/issue/63718 -->
    The `go_wasip1_wasm_exec` script in `GOROOT/misc/wasm` has dropped support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/certcontroller.go

    	approveCsr bool,
    	requestedLifetime time.Duration,
    ) {
    	certUtil := certutil.NewCertUtil(int(defaultCertGracePeriodRatio * 100))
    	for {
    		waitTime, _ := certUtil.GetWaitTime(s.istiodCertBundleWatcher.GetKeyCertBundle().CertPem, time.Now())
    		if !sleep.Until(stop, waitTime) {
    			return
    		}
    		certChain, keyPEM, _, err := chiron.GenKeyCertK8sCA(s.kubeClient.Kube(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. scan.go

    		*uint, *uint8, *uint16, *uint32, *uint64, *uintptr,
    		*float32, *float64,
    		*bool, *string, *time.Time,
    		*sql.NullInt32, *sql.NullInt64, *sql.NullFloat64,
    		*sql.NullBool, *sql.NullString, *sql.NullTime:
    		for initialized || rows.Next() {
    			initialized = false
    			db.RowsAffected++
    			db.AddError(rows.Scan(dest))
    		}
    	default:
    		var (
    			fields       = make([]*schema.Field, len(columns))
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top