Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for _code (1.85 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

            case NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED:
                break; /* normal for NTLMSSP */
            default:
                if ( log.isDebugEnabled() ) {
                    log.debug("Error code: 0x" + Hexdump.toHexString(resp.getErrorCode(), 8) + " for " + req.getClass().getSimpleName());
                }
                throw new SmbException(resp.getErrorCode(), null);
            }
            if ( resp.isVerifyFailed() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="com.google.code.gson" name="gson" version="2.8.6">
             <artifact name="gson-2.8.6.jar">
                <pgp value="AFCC4C7594D09E2182C60E0F7A01B0F236E5430F"/>
             </artifact>
          </component>
          <component group="com.google.code.gson" name="gson" version="2.8.9">
             <artifact name="gson-2.8.9.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    // Copyright 2015 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.
    
    package main
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"io"
    	"io/fs"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"time"
    )
    
    func cmdtest() {
    	gogcflags = os.Getenv("GO_GCFLAGS")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    // Copyright 2017 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.
    
    package types
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"fmt"
    	"go/constant"
    	"internal/types/errors"
    	"sync"
    )
    
    // Object represents an ir.Node, but without needing to import cmd/compile/internal/ir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    		// dump from a timed-out test process scales roughly with the overall
    		// running time of the test.
    		//
    		// This is probably too generous when the timeout is very long, but it seems
    		// better to hard-code a scale factor than to hard-code a constant delay.
    		if wd := testTimeout / 10; wd < 5*time.Second {
    			testWaitDelay = 5 * time.Second
    		} else {
    			testWaitDelay = wd
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    			// to be compatible with the one used in expand_calls.go
    			// as opposed to decompose.go. The expand calls code just
    			// takes the base name and creates an offset into it,
    			// without using the SplitOf/SplitOffset fields. The code
    			// in decompose.go does the opposite -- it creates a
    			// LocalSlot object with "Off" set to zero, but with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    
    		if !rescan {
    			break
    		}
    	}
    
    	pc += -pc & (FuncAlign - 1)
    	c.cursym.Size = pc
    
    	// lay out the code, emitting code and data relocations.
    
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	var i int32
    	var out [5]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Synchronized.java

    /**
     * Synchronized collection views. The returned synchronized collection views are serializable if the
     * backing collection and the mutex are serializable.
     *
     * <p>If {@code null} is passed as the {@code mutex} parameter to any of this class's top-level
     * methods or inner class constructors, the created object uses itself as the synchronization mutex.
     *
     * <p>This class should be used by other collection classes only.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Synchronized.java

    /**
     * Synchronized collection views. The returned synchronized collection views are serializable if the
     * backing collection and the mutex are serializable.
     *
     * <p>If {@code null} is passed as the {@code mutex} parameter to any of this class's top-level
     * methods or inner class constructors, the created object uses itself as the synchronization mutex.
     *
     * <p>This class should be used by other collection classes only.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    // Copyright 2018 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.
    
    package ld
    
    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"math/bits"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    	"sync"
    
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top