Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for curg (0.07 sec)

  1. samples/helloworld/src/Dockerfile

    COPY requirements.txt ./
    
    # install the dependencies and packages in the requirements file
    RUN pip install --no-cache-dir --require-hashes -r requirements.txt
    
    # old image had curl and could be used as a sample client if desired
    RUN apt-get update \
      && apt-get install curl --no-install-recommends -y \
      && rm -rf /var/lib/apt/lists/*
    
    EXPOSE 5000
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	present := sets.String{}
    
    	if lhs != nil {
    		for _, curr := range lhs.Value() {
    			if present.Has(curr) {
    				continue
    			}
    			ret = append(ret, curr)
    			present.Insert(curr)
    		}
    	}
    
    	if rhs != nil {
    		for _, curr := range rhs.Value() {
    			if present.Has(curr) {
    				continue
    			}
    			ret = append(ret, curr)
    			present.Insert(curr)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Cc    [11]uint8
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type W_Mnth struct {
    	Hid   [4]byte
    	Size  int32
    	Cur1  int32 //32bit pointer
    	Cur2  int32 //^
    	Devno uint32
    	_     [4]byte
    }
    
    type W_Mntent struct {
    	Fstype       uint32
    	Mode         uint32
    	Dev          uint32
    	Parentdev    uint32
    	Rootino      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                while (!next.isEmpty()) {
                    Throwable curr = next.poll();
                    if (printedNodes.contains(curr)) {
                        return false;
                    } else {
                        if (curr.getCause() != null) {
                            next.add(curr.getCause());
                        }
                        if (curr instanceof ContextAwareException) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pilot/test/xds/fake.go

    	// Setup config handlers
    	// TODO code re-use from server.go
    	configHandler := func(_, curr config.Config, event model.Event) {
    		pushReq := &model.PushRequest{
    			Full:           true,
    			ConfigsUpdated: sets.New(model.ConfigKey{Kind: kind.MustFromGVK(curr.GroupVersionKind), Name: curr.Name, Namespace: curr.Namespace}),
    			Reason:         model.NewReasonStats(model.ConfigUpdate),
    		}
    		s.ConfigUpdate(pushReq)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

        # shellcheck disable=SC2086
        retry-forever 10 curl ${CURL_FLAGS} \
          -H "X-Google-Metadata-Request: True" \
          -o "${tmp_kubelet_config}" \
          http://metadata.google.internal/computeMetadata/v1/instance/attributes/kubelet-config
        # only write to the final location if curl succeeds
        mv "${tmp_kubelet_config}" "${dest}"
      )
    }
    
    function download-kube-master-certs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. cmd/bucket-targets.go

    }
    
    type latencyStat struct {
    	lastmin lastMinuteLatency
    	curr    time.Duration
    	avg     time.Duration
    	peak    time.Duration
    	N       int64
    }
    
    func (l *latencyStat) update(d time.Duration) {
    	l.lastmin.add(d)
    	l.N++
    	if d > l.peak {
    		l.peak = d
    	}
    	l.curr = l.lastmin.getTotal().avg()
    	l.avg = time.Duration((int64(l.avg)*(l.N-1) + int64(l.curr)) / l.N)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.io.CopyUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.curl.Curl.Method;
    import org.codelibs.curl.CurlRequest;
    import org.codelibs.curl.CurlResponse;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.api.BaseApiManager;
    import org.codelibs.fess.exception.FessSystemException;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/validation/validation.go

    			queueSortArgs = cfg.Args
    		}
    	}
    	for i := 1; i < len(profiles); i++ {
    		var curr config.PluginSet
    		if profiles[i].Plugins != nil {
    			curr = profiles[i].Plugins.QueueSort
    		}
    		if !apiequality.Semantic.DeepEqual(canon, curr) {
    			errs = append(errs, field.Invalid(path.Index(i).Child("plugins", "queueSort"), curr, "queueSort must be the same for all profiles"))
    		}
    		for _, cfg := range profiles[i].PluginConfig {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/aggregator.go

    	apiServices := []*v1.APIService{}
    
    	for _, curr := range delegateAPIServer.ListedPaths() {
    		if curr == "/api/v1" {
    			apiService := makeAPIService(schema.GroupVersion{Group: "", Version: "v1"}, apiVersionPriorities)
    			registration.AddAPIServiceToSyncOnStart(apiService)
    			apiServices = append(apiServices, apiService)
    			continue
    		}
    
    		if !strings.HasPrefix(curr, "/apis/") {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top