Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 238 for _ignored (0.23 sec)

  1. src/cmd/cgo/gcc.go

    	// doesn't have any ANSI escape sequences in it. (TERM=dumb is
    	// insufficient; if the user specifies CGO_CFLAGS=-fdiagnostics-color,
    	// GCC will ignore TERM, and GCC can also be configured at compile-time
    	// to ignore TERM.)
    	stderr := p.gccErrors(b.Bytes(), "-fdiagnostics-color=never")
    	if strings.Contains(stderr, "unrecognized command line option") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/reflect/type.go

    		return false
    	}
    	yield := y.FuncType()
    	return yield.InCount == 2 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
    }
    
    // add returns p+x.
    //
    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers_test.go

    					KillPodOptions: &KillPodOptions{PodTerminationGracePeriodSecondsOverride: intp(30)},
    				},
    			}),
    			expectKnownTerminated: true,
    		},
    		{
    			name: "a new pod is recorded and started and running pod is ignored",
    			update: UpdatePodOptions{
    				UpdateType: kubetypes.SyncPodCreate,
    				Pod:        newNamedPod("1", "ns", "running-pod", false),
    				RunningPod: &kubecontainer.Pod{ID: "1", Name: "orphaned-pod", Namespace: "ns"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                var col = title.substr(3,...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	printLevel0 = 0
    	printLevel1 = 3
    	printLevel2 = 6
    )
    
    func printSpaces(numSpaces int) string {
    	return strings.Repeat(" ", numSpaces)
    }
    
    var (
    	// Ignore unmeshed pods.  This makes it easy to suppress warnings about kube-system etc
    	ignoreUnmeshed = false
    
    	describeNamespace string
    )
    
    func podDescribeCmd(ctx cli.Context) *cobra.Command {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers.go

    // or nil if the threshold should be ignored.
    func parseThresholdStatement(signal evictionapi.Signal, val string) (*evictionapi.Threshold, error) {
    	if !validSignal(signal) {
    		return nil, fmt.Errorf(unsupportedEvictionSignal, signal)
    	}
    	operator := evictionapi.OpForSignal[signal]
    	if strings.HasSuffix(val, "%") {
    		// ignore 0% and 100%
    		if val == "0%" || val == "100%" {
    			return nil, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        private static void assertImmutable(Map<String, String> map) {
            try {
                map.put("immutableTest", "value")
                Assert.fail('Map is not immutable')
            } catch (UnsupportedOperationException ignored) {
                // expected
            }
        }
    
        def "replace can modify property"() {
            given:
            property.set(someValue())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    		return nil
    	}
    	res := map[string]string{}
    	for _, e := range hl {
    		k := strings.ToLower(string(e.Name))
    		if _, f := res[k]; f {
    			// "Subsequent entries with an equivalent header name MUST be ignored"
    			continue
    		}
    		res[k] = e.Value
    	}
    	return res
    }
    
    func createMirrorFilter(ctx configContext, filter *k8s.HTTPRequestMirrorFilter, ns string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    return visitor;
                } else {
                    return new Visitor() {
                        @Override
                        public void visit(Service service) {
                            // Ignore the decorated service
                            if (service != decorates) {
                                visitor.visit(service);
                            }
                        }
                    };
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    		//
    		// In this case though, the only reasonable value for c.heapLive-c.triggered
    		// would be 0, which isn't really all that useful, i.e. the GC was so short
    		// that it didn't matter.
    		//
    		// Ignore this case and don't update anything.
    		return
    	}
    	idleUtilization := 0.0
    	if assistDuration > 0 {
    		idleUtilization = float64(c.idleMarkTime.Load()) / float64(assistDuration*int64(procs))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top