Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 179 for watcher (0.29 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

                // The following are known variables that can change between builds and should not be inherited
                if (APP_NAME_REGEX.matcher(entry.getKey()).matches()
                    || JAVA_MAIN_CLASS_REGEX.matcher(entry.getKey()).matches()
                    || entry.getKey().equals("TERM_SESSION_ID")
                    || entry.getKey().equals("ITERM_SESSION_ID")) {
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	}
    	if configEditor != nil {
    		configEditor(&cfg)
    	}
    	catcher := &errorCatcher{UI: ui.options.UI}
    	options := *ui.options
    	options.UI = catcher
    	_, rpt, err := generateRawReport(ui.copier.newCopy(), cmd, cfg, &options)
    	if err != nil {
    		http.Error(w, err.Error(), http.StatusBadRequest)
    		ui.options.UI.PrintErr(err)
    		return nil, nil
    	}
    	return rpt, catcher.errors
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    
            for (int i = 0; i < lines.length; i++) {
                String line = lines[i];
                if (!WHITESPACE.matcher(line).matches()) {
                    builder.append(indent);
                }
                builder.append(line);
                if (i < lines.length - 1) {
                    builder.append('\n');
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/process/ArgWriter.java

                    writer.print(str);
                }
            }
            writer.println();
            return this;
        }
    
        private boolean needsQuoting(String str) {
            return quotablePattern.matcher(str).find();
        }
    
        @Override
        public ArgCollector args(Iterable<?> args) {
            for (Object arg : args) {
                args(arg);
            }
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:14:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/internal/trace/internal/oldtrace/parser.go

    			p.batchOffsets[raw.batchPid] = append(p.batchOffsets[raw.batchPid], bo)
    			curP = raw.batchPid
    		}
    
    		batches := p.batchOffsets[curP]
    		if len(batches) == 0 {
    			return fmt.Errorf("read event %d with current P of %d, but P has no batches yet",
    				raw.typ, curP)
    		}
    		batches[len(batches)-1].numEvents++
    
    		if raw.typ == EvCPUSample {
    			e := Event{Type: raw.typ}
    
    			argOffset := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    	// https://github.com/envoyproxy/envoy/issues/32823
    	// We want to garbage collect extensions when they are no longer referenced, rather than delete immediately
    	return url == v3.ExtensionConfigurationType
    }
    
    // shouldSetWatchedResources indicates whether we should set the watched resources for a given type.
    // for some type like `Address` we customly handle it in the generator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/codecs/kafka/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/matcher/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/router/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// overload.
    	ResilientWatchCacheInitialization featuregate.Feature = "ResilientWatchCacheInitialization"
    
    	// owner: @serathius
    	// beta: v1.30
    	//
    	// Allow watch cache to create a watch on a dedicated RPC.
    	// This prevents watch cache from being starved by other watches.
    	SeparateCacheWatchRPC featuregate.Feature = "SeparateCacheWatchRPC"
    
    	// owner: @apelisse, @lavalamp
    	// alpha: v1.14
    	// beta: v1.16
    	// stable: v1.22
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

        private static int getRelationOrder(String value, RangeValue rangeValue, boolean isLeft) {
            if (rangeValue.value.isEmpty()) {
                return isLeft ? 1 : -1;
            }
    
            value = FILTER_1.matcher(value).replaceAll("");
    
            List<String> valueTokens = new ArrayList<>(Arrays.asList(FILTER_2.split(value)));
            List<String> rangeValueTokens = new ArrayList<>(Arrays.asList(FILTER_3.split(rangeValue.value)));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

        private static int getRelationOrder(String value, RangeValue rangeValue, boolean isLeft) {
            if (rangeValue.value.isEmpty()) {
                return isLeft ? 1 : -1;
            }
    
            value = FILTER_1.matcher(value).replaceAll("");
    
            List<String> valueTokens = new ArrayList<>(Arrays.asList(FILTER_2.split(value)));
            List<String> rangeValueTokens = new ArrayList<>(Arrays.asList(FILTER_3.split(rangeValue.value)));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top