Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 444 for sometimes (0.56 sec)

  1. tests/integration/security/util/cert/cert.go

    				return err
    			}
    		}
    
    		// If there is a configmap storing the CA cert from a previous
    		// integration test, remove it. Ideally, CI should delete all
    		// resources from a previous integration test, but sometimes
    		// the resources from a previous integration test are not deleted.
    		configMapName := "istio-ca-root-cert"
    		err = cluster.Kube().CoreV1().ConfigMaps(systemNs.Name()).Delete(context.TODO(), configMapName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/separate-openapi-schemas.md

    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image02.png">
    </div>
    
    This means that it will **always have a value**, it's just that sometimes the value could be `None` (or `null` in JSON).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

            where:
            value << ["-1", "0", "1.1", "foo", " 1", "65536"]
        }
    
        @Flaky(because = "Sometimes it hangs for hours")
        @Issue('https://github.com/gradle/gradle/issues/18084')
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        @Timeout(30)
        def "can debug with org.gradle.debug.server=false"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/envoyfilter.go

    	}
    	out.Patches = make(map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper)
    	for _, cp := range localEnvoyFilter.ConfigPatches {
    		if cp.Patch == nil {
    			// Should be caught by validation, but sometimes its disabled and we don't want to crash
    			// as a result.
    			log.Debugf("envoyfilter %s/%s discarded due to missing patch", local.Namespace, local.Name)
    			continue
    		}
    		cpw := &EnvoyFilterConfigPatchWrapper{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. pkg/volume/fc/attacher.go

    	// The device is unmounted now. If UnmountDevice was retried, GetDeviceNameFromMount
    	// won't find any mount and won't return DetachDisk below.
    	// Therefore implement our own retry mechanism here.
    	// E.g. DetachDisk sometimes fails to flush a multipath device with "device is busy" when it was
    	// just unmounted.
    	// 2 minutes should be enough within 6 minute force detach timeout.
    	var detachError error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. README.md

        the [Guava Beta Checker] to ensure that you do not use any `@Beta` APIs!**
    
    2.  APIs without `@Beta` will remain binary-compatible for the indefinite
        future. (Previously, we sometimes removed such APIs after a deprecation
        period. The last release to remove non-`@Beta` APIs was Guava 21.0.) Even
        `@Deprecated` APIs will remain (again, unless they are `@Beta`). We have no
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultMutableAttributeContainer.java

        @Override
        public <T> AttributeContainer attributeProvider(Attribute<T> key, Provider<? extends T> provider) {
            checkInsertionAllowed(key);
            assertAttributeValueIsNotNull(provider);
            // We can only sometimes check the type of the provider ahead of time.
            // When realizing this provider and inserting its value into the container, we still
            // check the value type is appropriate. see doInsertion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 20:29:26 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. hack/lib/init.sh

    #     under OS/ARCH specific subdirs
    # THIS_PLATFORM_BIN: a symlink to the output directory for binaries built for
    #     the current host platform (e.g. build/test tools).
    #
    # Compat: The KUBE_OUTPUT_SUBPATH variable is sometimes passed in by callers.
    # If it is specified, we'll use it in KUBE_OUTPUT.
    _KUBE_OUTPUT_SUBPATH="${KUBE_OUTPUT_SUBPATH:-_output/local}"
    export KUBE_OUTPUT="${KUBE_ROOT}/${_KUBE_OUTPUT_SUBPATH}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                    <div class="collapse" id="update-baseline-${changeId}">
                      <div class="well">
                          Sometimes, the change was made on the `release` branch but hasn't yet been published to the baseline version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/runtime/runtime-gdb_test.go

    			testenv.SkipFlaky(t, 50838)
    		case bytes.Contains(got, []byte("waiting for new child: No child processes.")):
    			// GDB bug: Sometimes it fails to wait for a clone child.
    			testenv.SkipFlaky(t, 60553)
    		case bytes.Contains(got, []byte(" exited normally]\n")):
    			// GDB bug: Sometimes the inferior exits fine,
    			// but then GDB hangs.
    			testenv.SkipFlaky(t, 37405)
    		}
    		t.Fatalf("gdb exited with error: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top