Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for unserved (0.29 sec)

  1. src/compress/flate/dict_decoder.go

    // Copyright 2016 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 flate
    
    // dictDecoder implements the LZ77 sliding dictionary as used in decompression.
    // LZ77 decompresses data through sequences of two forms of commands:
    //
    //   - Literal insertions: Runs of one or more symbols are inserted into the data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. src/net/netip/slow_test.go

    // Copyright 2020 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 netip_test
    
    import (
    	"fmt"
    	. "net/netip"
    	"strconv"
    	"strings"
    )
    
    // zeros is a slice of eight stringified zeros. It's used in
    // parseIPSlow to construct slices of specific amounts of zero fields,
    // from 1 to 8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package filelock
    
    import (
    	"internal/syscall/windows"
    	"io/fs"
    	"syscall"
    )
    
    type lockType uint32
    
    const (
    	readLock  lockType = 0
    	writeLock lockType = windows.LOCKFILE_EXCLUSIVE_LOCK
    )
    
    const (
    	reserved = 0
    	allBytes = ^uint32(0)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/DefaultClassPath.java

                    return new ImmutableUniqueList<T>(set, array);
                }
    
                private Object[] shrinkArray() {
                    if (array.length == inserted) {
                        return array;
                    }
                    Object[] newArray = new Object[inserted];
                    System.arraycopy(array, 0, newArray, 0, inserted);
                    return newArray;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. src/go/parser/error_test.go

    // Copyright 2012 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.
    
    // This file implements a parser test harness. The files in the testdata
    // directory are parsed and the errors reported are compared against the
    // error messages expected in the test files. The test files must end in
    // .src rather than .go so that they are not disturbed by gofmt runs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. src/runtime/debugcall.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.
    
    // Though the debug call function feature is not enabled on
    // ppc64, inserted ppc64 to avoid missing Go declaration error
    // for debugCallPanicked while building runtime.test
    //go:build amd64 || arm64 || ppc64le || ppc64
    
    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/internal/concurrent/hashtriemap_test.go

    	t.Helper()
    	return func(got V, loaded bool) {
    		t.Helper()
    
    		if loaded {
    			t.Errorf("expected inserted key %v to have been stored, not loaded", key)
    		}
    		if got != want {
    			t.Errorf("expected inserted key %v to have value %v, got %v", key, want, got)
    		}
    	}
    }
    
    func expectDeleted[K, V comparable](t *testing.T, key K, old V) func(deleted bool) {
    	t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/registry/syscall.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package registry
    
    import "syscall"
    
    const (
    	_REG_OPTION_NON_VOLATILE = 0
    
    	_REG_CREATED_NEW_KEY     = 1
    	_REG_OPENED_EXISTING_KEY = 2
    
    	_ERROR_NO_MORE_ITEMS syscall.Errno = 259
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/signal_solaris.go

    	/* 32 */ {_SigNotify, "SIGWAITING: reserved signal no longer used by"},
    	/* 33 */ {_SigNotify, "SIGLWP: reserved signal no longer used by"},
    	/* 34 */ {_SigNotify, "SIGFREEZE: special signal used by CPR"},
    	/* 35 */ {_SigNotify, "SIGTHAW: special signal used by CPR"},
    	/* 36 */ {_SigSetStack + _SigUnblock, "SIGCANCEL: reserved signal for thread cancellation"}, // Oracle's spelling of cancellation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_main.txt

    // 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 standalone_main_normal_test
    
    import "testing"
    
    func TestMain(t *testing.T) {
    }
    -- standalone_main_wrong_test.go --
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 17 00:45:15 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top