Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for negligible (0.21 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

         * @since 7.6
         */
        @Incubating
        public abstract boolean matches(String vendor);
    
        /**
         * Returns a vendor spec that matches a VM by its vendor.
         * <p>
         * A VM is determined eligible if the system property <code>java.vendor</code> contains
         * the given match string. The comparison is done case-insensitive.
         * </p>
         * @param match the sequence to search for
         * @return a new filter object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/monitor/file_snapshot.go

    			snapshot.configTypeFilter[k.GroupVersionKind()] = true
    		}
    	}
    
    	return snapshot
    }
    
    // ReadConfigFiles parses files in the root directory and returns a sorted slice of
    // eligible model.Config. This can be used as a configFunc when creating a Monitor.
    func (f *FileSnapshot) ReadConfigFiles() ([]*config.Config, error) {
    	var result []*config.Config
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/shift_test.go

    			Exit("store")))
    	Compile(fun.f)
    	return fun
    }
    
    func TestShiftToExtensionAMD64(t *testing.T) {
    	c := testConfig(t)
    	// Test that eligible pairs of constant shifts are converted to extensions.
    	// For example:
    	//   (uint64(x) << 32) >> 32 -> uint64(uint32(x))
    	ops := map[Op]int{
    		OpAMD64SHLQconst: 0, OpAMD64SHLLconst: 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

                map(name, Cast.<Closure<?>>uncheckedNonnullCast(value));
            } else {
                throw new MissingPropertyException(name, getClass());
            }
        }
    
        @Override
        public void ineligible(String propertyName) {
            _ineligiblePropertyNames.add(propertyName);
        }
    
        @Override
        public <T> T getConventionValue(T actualValue, String propertyName, boolean isExplicitValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RoutePlanner.kt

     *     lookups) and attempt a new connection them. When failures occur, retries iterate the list of
     *     available routes.
     *
     * If the pool gains an eligible connection while DNS, TCP, or TLS work is in flight, this finder
     * will prefer pooled connections. Only pooled HTTP/2 connections are used for such de-duplication.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. pkg/kubelet/images/image_gc_manager.go

    		if err != nil {
    			return err
    		}
    
    		if freed < amountToFree {
    			err := fmt.Errorf("Failed to garbage collect required amount of images. Attempted to free %d bytes, but only found %d bytes eligible to free.", amountToFree, freed)
    			im.recorder.Eventf(im.nodeRef, v1.EventTypeWarning, events.FreeDiskSpaceFailed, err.Error())
    			return err
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/run.go

    func (t *T) toNDeployments(ctx framework.TestContext, n int, from echo.Instances, testFn perNDeploymentTest) {
    	includeNS := t.isMultipleNamespaces()
    
    	// every eligible target instance from any cluster (map to dedupe)
    	var commonTargets []string
    	for _, fromInstance := range from {
    		// eligible target instances from the source cluster
    		filteredForSource := t.applyCombinationFilters(fromInstance, t.destinations)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/transition.go

    	if !obj.IsLatest || t.IsNull() {
    		return time.Time{}, false
    	}
    
    	if !t.IsDateNull() {
    		return t.Date.Time, true
    	}
    
    	// Days == 0 indicates immediate tiering, i.e object is eligible for tiering since its creation.
    	if t.Days == 0 {
    		return obj.ModTime, true
    	}
    	return ExpectedExpiryTime(obj.ModTime, int(t.Days)), true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 10 17:07:49 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. src/os/signal/signal_cgo_test.go

    	// pseudo-terminal.
    	// - GO_TEST_TERMINAL_SIGNALS=1: This process creates a new process
    	// group and session. The PTY is the controlling terminal for this
    	// session. This process masks SIGTTOU, making it eligible to be a
    	// foreground process group. This process will take over as foreground
    	// from subprocess 2 (step 4 above).
    	// - GO_TEST_TERMINAL_SIGNALS=2: This process create a child process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/quota/v1/evaluator/core/services.go

    	return generic.CalculateUsageStats(options, p.listFuncByNamespace, generic.MatchesNoScopeFunc, p.Usage)
    }
    
    var _ quota.Evaluator = &serviceEvaluator{}
    
    // GetQuotaServiceType returns ServiceType if the service type is eligible to track against a quota, nor return ""
    func GetQuotaServiceType(service *corev1.Service) corev1.ServiceType {
    	switch service.Spec.Type {
    	case corev1.ServiceTypeNodePort:
    		return corev1.ServiceTypeNodePort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top