Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,473 for erator (0.55 sec)

  1. src/os/error.go

    func (e *SyscallError) Unwrap() error { return e.Err }
    
    // Timeout reports whether this error represents a timeout.
    func (e *SyscallError) Timeout() bool {
    	t, ok := e.Err.(timeout)
    	return ok && t.Timeout()
    }
    
    // NewSyscallError returns, as an error, a new [SyscallError]
    // with the given system call name and error details.
    // As a convenience, if err is nil, NewSyscallError returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. internal/crypto/error.go

    	e := fmt.Errorf(format, a...)
    	ee := Error{}
    	ee.msg = e.Error()
    	ee.cause = errors.Unwrap(e)
    	return ee
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.cause }
    
    // Error 'error' compatible method.
    func (e Error) Error() string {
    	if e.msg == "" {
    		return "crypto: cause <nil>"
    	}
    	return e.msg
    }
    
    var (
    	// ErrInvalidEncryptionMethod indicates that the specified SSE encryption method
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

        // current[i]_ is the actual traversing iterator.
    $for j [[
    
        const typename ParamGenerator<T$j>::iterator begin$(j)_;
        const typename ParamGenerator<T$j>::iterator end$(j)_;
        typename ParamGenerator<T$j>::iterator current$(j)_;
    ]]
    
        ParamType current_value_;
      };  // class CartesianProductGenerator$i::Iterator
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

        // current[i]_ is the actual traversing iterator.
    $for j [[
    
        const typename ParamGenerator<T$j>::iterator begin$(j)_;
        const typename ParamGenerator<T$j>::iterator end$(j)_;
        typename ParamGenerator<T$j>::iterator current$(j)_;
    ]]
    
        ParamType current_value_;
      };  // class CartesianProductGenerator$i::Iterator
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        // current[i]_ is the actual traversing iterator.
        const typename ParamGenerator<T1>::iterator begin1_;
        const typename ParamGenerator<T1>::iterator end1_;
        typename ParamGenerator<T1>::iterator current1_;
        const typename ParamGenerator<T2>::iterator begin2_;
        const typename ParamGenerator<T2>::iterator end2_;
        typename ParamGenerator<T2>::iterator current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        // current[i]_ is the actual traversing iterator.
        const typename ParamGenerator<T1>::iterator begin1_;
        const typename ParamGenerator<T1>::iterator end1_;
        typename ParamGenerator<T1>::iterator current1_;
        const typename ParamGenerator<T2>::iterator begin2_;
        const typename ParamGenerator<T2>::iterator end2_;
        typename ParamGenerator<T2>::iterator current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  7. pkg/network/error.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package network
    
    import (
    	"errors"
    	"net"
    	"net/http"
    )
    
    func IsUnexpectedListenerError(err error) bool {
    	if err == nil {
    		return false
    	}
    	if errors.Is(err, net.ErrClosed) {
    		return false
    	}
    	if errors.Is(err, http.ErrServerClosed) {
    		return false
    	}
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 08:25:27 UTC 2023
    - 858 bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

      internal fun completeEdit(
        editor: Editor,
        success: Boolean,
      ) {
        val entry = editor.entry
        check(entry.currentEditor == editor)
    
        // If this edit is creating the entry for the first time, every index must have a value.
        if (success && !entry.readable) {
          for (i in 0 until valueCount) {
            if (!editor.written!![i]) {
              editor.abort()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            StringBuilder projectNames = new StringBuilder();
            Iterator<MavenProject> iterator = projects.iterator();
            while (iterator.hasNext()) {
                MavenProject project = iterator.next();
                projectNames.append(project.getGroupId()).append(":").append(project.getArtifactId());
                if (iterator.hasNext()) {
                    projectNames.append(", ");
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 689 bytes
    - Viewed (0)
Back to top