Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 619 for absence (0.23 sec)

  1. guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java

        assertEquals("message", record.getMessage());
        assertSame(EXCEPTION, record.getThrown());
      }
    
      public void testConcurrentModification() throws Exception {
        // Tests for the absence of a bug where logging while iterating over the
        // stored log records causes a ConcurrentModificationException
        assertTrue(handler.getStoredLogRecords().isEmpty());
        ExampleClassUnderTest.foo();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         * In this case, the failure can be synthetic to provide the stack trace for the problem origin.
         * <p>
         * The failure can also be omitted due to limits. Its absence does not mean there was no exception causing the problem.
         */
        @Nullable
        Failure getFailure();
    
        /**
         * Returns an exception that can be thrown when this problem should result in an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * This approach ensures that sharing mutable state across targets via any means
     * (including {@link org.gradle.api.services.BuildService}, which are not supported) is prevented.
     * The absence of shared mutable state allows these actions to be safely executed in parallel as needed.
     *
     * <p><b>IMPORTANT:</b> As isolated action instances are recreated using Configuration Cache serialization, they must
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. test/const7.go

    	"runtime"
    	"strings"
    )
    
    // testProg creates a package called name, with path dir/name.go,
    // which declares an untyped constant of the given length.
    // testProg compiles this package and checks for the absence or
    // presence of a constant literal error.
    func testProg(dir, name string, length int, msg string) {
    	var buf bytes.Buffer
    
    	fmt.Fprintf(&buf,
    		"package %s; const _ = 0b%s // %d bits",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/work/DisableCachingByDefault.java

     * <p>Caching for individual task instances can be enabled and disabled via {@link TaskOutputs#cacheIf(String, Spec)} or disabled via {@link TaskOutputs#doNotCacheIf(String, Spec)}.
     * Using these APIs takes precedence over the presence (or absence) of {@code @DisableCachingByDefault}.</p>
     *
     * @see org.gradle.api.tasks.CacheableTask
     * @see org.gradle.api.artifacts.transform.CacheableTransform
     *
     * @since 7.0
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 20 20:53:24 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/AbstractModuleMetadataCache.java

            return get(key);
        }
    
        @Override
        public CachedMetadata cacheMissing(ModuleComponentRepository<?> repository, ModuleComponentIdentifier id) {
            LOGGER.debug("Recording absence of module descriptor in cache: {} [changing = {}]", id, false);
            ModuleComponentAtRepositoryKey key = createKey(repository, id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/conversion.go

    	}
    	str := (*in)[0]
    	i, err := strconv.Atoi(str)
    	if err != nil {
    		return err
    	}
    	*out = i
    	return nil
    }
    
    // Convert_Slice_string_To_bool will convert a string parameter to boolean.
    // Only the absence of a value (i.e. zero-length slice), a value of "false", or a
    // value of "0" resolve to false.
    // Any other value (including empty string) resolves to true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 5.2K bytes
    - Viewed (0)
  8. pkg/apis/policy/types.go

    type PodDisruptionBudgetSpec struct {
    	// An eviction is allowed if at least "minAvailable" pods selected by
    	// "selector" will still be available after the eviction, i.e. even in the
    	// absence of the evicted pod.  So for example you can prevent all voluntary
    	// evictions by specifying "100%".
    	// +optional
    	MinAvailable *intstr.IntOrString
    
    	// Label query over pods whose evictions are managed by the disruption
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //
    //   - Hostname is the hostname of the local machine (from uname -n).
    //     However, some components allow the user to pass in a --hostname-override flag,
    //     which will override this in most places. In the absence of anything more meaningful,
    //     kubelet will use Hostname as the Node.Name when it creates the Node.
    //
    // * The cloudproviders have the own names: GCE has InstanceName, AWS has InstanceId.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_block.go

    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), csiTimeout)
    	defer cancel()
    
    	csiClient, err := m.csiClientGetter.Get()
    	if err != nil {
    		// Treat the absence of the CSI driver as a transient error
    		// See https://github.com/kubernetes/kubernetes/issues/120268
    		return "", volumetypes.NewTransientOperationFailure(log("blockMapper.SetUpDevice failed to get CSI client: %v", err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top