Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for reliably (0.14 sec)

  1. cmd/os-reliable.go

    			// windows, because windows API does not return "not a
    			// directory" error message. Handle this specifically
    			// here.
    			return errFileAccessDenied
    		}
    	}
    	return err
    }
    
    // Reliably retries os.RemoveAll if for some reason os.RemoveAll returns
    // syscall.ENOTEMPTY (children has files).
    func reliableRemoveAll(dirPath string) (err error) {
    	i := 0
    	for {
    		// Removes all the directories and files.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. releasenotes/notes/drop-iop.yaml

        of what was installed.
        However, it was a common source of confusion (as users would change it and nothing would happen), and did not reliably represent the current state.
        As there is no `IstioOperator` needed for these usages anymore, `istioctl install` and `helm install` no longer install the `IstioOperator` CRD.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtFunctionLikeSymbol.kt

        /**
         * Kotlin functions always have stable parameter names that can be reliably used when calling them with named arguments.
         * Functions loaded from platform definitions (e.g. Java binaries or JS) may have unstable parameter names that vary from
         * one platform installation to another. These names can not be used reliably for calls with named arguments.
         */
        public abstract val hasStableParameterNames: Boolean
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. test/fixedbugs/bug487.go

    // errorcheck
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The gccgo compiler did not reliably report mismatches between the
    // number of function results and the number of expected results.
    
    package p
    
    func G() (int, int, int) {
    	return 0, 0, 0
    }
    
    func F() {
    	a, b := G()	// ERROR "mismatch|cannot initialize"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 570 bytes
    - Viewed (0)
  5. src/os/signal/signal_linux_test.go

    //go:build linux
    
    package signal
    
    import (
    	"os"
    	"syscall"
    	"testing"
    	"time"
    )
    
    const prSetKeepCaps = 8
    
    // This test validates that syscall.AllThreadsSyscall() can reliably
    // reach all 'm' (threads) of the nocgo runtime even when one thread
    // is blocked waiting to receive signals from the kernel. This monitors
    // for a regression vs. the fix for #43149.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDestroyablesIntegrationTest.groovy

                            maven { url "${mavenRepo.uri}" }
                        }
                    }
                """
            }
            includedBuilds << buildB
        }
    
        def "clean build and build clean work reliably with composite build"() {
            given:
            dependency "org.test:buildB:1.0"
            buildA.buildFile << """
                clean {
                    dependsOn gradle.includedBuild('buildB').task(':clean')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jul 09 15:31:00 UTC 2017
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/TextUtil.java

    import java.util.regex.Pattern;
    
    public class TextUtil {
    
        /**
         * TODO - hack to avoid classloading issues. We should use org.gradle.util.internal.TextUtil
         *
         * Currently we can't use it reliably because it causes CNF issues with cross version integration tests running against tooling api < 1.3.
         */
        public static String escapeString(Object obj) {
            return obj.toString().replaceAll("\\\\", "\\\\\\\\");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20/xor.go

    	_, _ = src[3], dst[3] // bounds check elimination hint
    	if unaligned {
    		// The compiler should optimize this code into
    		// 32-bit unaligned little endian loads and stores.
    		// TODO: delete once the compiler does a reliably
    		// good job with the generic code below.
    		// See issue #25111 for more details.
    		v := uint32(src[0])
    		v |= uint32(src[1]) << 8
    		v |= uint32(src[2]) << 16
    		v |= uint32(src[3]) << 24
    		v ^= a + b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 22:52:07 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/git.go

    		//
    		// However, versions of Git older that 2.34.0 don't recognize the
    		// HTTP_GIT_PROTOCOL variable, and instead need that value to be set in the
    		// GIT_PROTOCOL variable. We do so here so that vcweb can work reliably
    		// with older Git releases. (As of the time of writing, the Go project's
    		// builders were on Git version 2.30.2.)
    		env := slices.Clip(baseEnv)
    		if p := req.Header.Get("Git-Protocol"); p != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/options.go

    	HostProbeSNATIPV6 = netip.MustParseAddr(env.RegisterStringVar("HOST_PROBE_SNAT_IPV6", DefaultHostProbeSNATIPV6, "").Get())
    )
    
    const (
    	// to reliably identify kubelet healthprobes from inside the pod (versus standard kube-proxy traffic,
    	// since the IP is normally the same), we SNAT identified host probes in the host netns to a fixed
    	// APIPA/"link-local" IP.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top