Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for retriable (0.13 sec)

  1. CHANGELOG/CHANGELOG-1.18.md

    - Fix: add azure disk migration support for CSINode ([#88014](https://github.com/kubernetes/kubernetes/pull/88014), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider and Storage]
    - Fix: add non-retriable errors in azure clients ([#87941](https://github.com/kubernetes/kubernetes/pull/87941), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  2. src/internal/poll/sendfile_linux.go

    			// support) and syscall.EINVAL (fd types which
    			// don't implement sendfile), and other errors.
    			// We should end the loop when there is no error
    			// returned from sendfile(2) or it is not a retryable error.
    			break
    		}
    		if err == syscall.EINTR {
    			continue
    		}
    		if err = dstFD.pd.waitWrite(dstFD.isFile); err != nil {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/encoding/json/tagkey_test.go

    		{Name(""), emptyTag{"Pour Moi"}, "Pour Moi", "W"},
    		{Name(""), misnamedTag{"Animal Kingdom"}, "Animal Kingdom", "X"},
    		{Name(""), badFormatTag{"Orfevre"}, "Orfevre", "Y"},
    		{Name(""), badCodeTag{"Reliable Man"}, "Reliable Man", "Z"},
    		{Name(""), percentSlashTag{"brut"}, "brut", "text/html%"},
    		{Name(""), punctuationTag{"Union Rags"}, "Union Rags", "!#$%&()*+-./:;<=>?@[]^_{|}~ "},
    		{Name(""), spaceTag{"Perreddu"}, "Perreddu", "With space"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. pkg/wasm/httpfetcher.go

    				wasmLog.Infof("wasm server connection is not closed: %v", err)
    			}
    			return unboxIfPossible(body), err
    		}
    		lastError = fmt.Errorf("wasm module download request failed: status code %v", resp.StatusCode)
    		if retryable(resp.StatusCode) {
    			// Limit wasm module to 256mb; in reality it must be much smaller
    			body, err := io.ReadAll(io.LimitReader(resp.Body, 1024*1024*256))
    			if err != nil {
    				return nil, err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. src/internal/poll/sendfile_solaris.go

    			// support) and syscall.EINVAL (fd types which
    			// don't implement sendfile), and other errors.
    			// We should end the loop when there is no error
    			// returned from sendfile(2) or it is not a retryable error.
    			break
    		}
    		if err == syscall.EINTR {
    			continue
    		}
    		if err = dstFD.pd.waitWrite(dstFD.isFile); err != nil {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/local/local.go

    import (
    	"istio.io/istio/pkg/config/analysis/diag"
    )
    
    const (
    	meshConfigMapKey   = "mesh"
    	meshConfigMapName  = "istio"
    	meshNetworksMapKey = "meshNetworks"
    )
    
    // AnalysisResult represents the returnable results of an analysis execution
    type AnalysisResult struct {
    	Messages          diag.Messages
    	MappedMessages    map[string]diag.Messages
    	SkippedAnalyzers  []string
    	ExecutedAnalyzers []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 984 bytes
    - Viewed (0)
  7. README.md

    # The Go Programming Language
    
    Go is an open source programming language that makes it easy to build simple,
    reliable, and efficient software.
    
    ![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg)
    *Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attributions license][cc4-by].*
    
    Our canonical Git repository is located at https://go.googlesource.com/go.
    There is a mirror of the repository at https://github.com/golang/go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 20:14:56 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.h

    };
    
    absl::flat_hash_map<string, std::vector<string>>* GetAllowlistTable();
    
    namespace testing {
    // DO NOT USE IN PRODUCTION.
    //
    // Resets some internal state to let us write reliable unit tests.
    void ResetClusterSequenceNumber();
    
    // Return a list of operation that we choose not to put into the allowlist.
    absl::flat_hash_set<string> GetKnownXLAAllowlistOp();
    }  // namespace testing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/HashingClassLoaderFactory.java

    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ClassLoaderFactory} that also stores the hash of each created classloader which is later retrievable via {@link #getClassLoaderClasspathHash(ClassLoader)}.
     */
    public interface HashingClassLoaderFactory extends ClassLoaderFactory {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

        } finally {
          interruptenator.shutdown();
          Thread.interrupted();
        }
      }
    
      /**
       * awaitFullGc() is not quite as reliable a way to ensure calling of a specific finalize method as
       * the more direct await* methods, but should be reliable enough in practice to avoid flakiness of
       * this test. (And if it isn't, we'd like to know about it first!)
       */
      public void testAwaitFullGc() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top