Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 754 for provider (0.1 sec)

  1. src/sync/atomic/type.go

    // And atomically performs a bitwise AND operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Int32) And(mask int32) (old int32) { return AndInt32(&x.v, mask) }
    
    // Or atomically performs a bitwise OR operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Int32) Or(mask int32) (old int32) { return OrInt32(&x.v, mask) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/syscall/asm_openbsd_ppc64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    //
    // System call support for PPC64, OpenBSD
    //
    
    // Provide these function names via assembly so they are provided as ABI0,
    // rather than ABIInternal.
    
    // func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	JMP	·syscallInternal(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/internal/trace/base.go

    		return id
    	}
    	t.nextExtra++
    	id := t.nextExtra
    	t.extraStrings = append(t.extraStrings, s)
    	t.extraStringIDs[s] = id
    	return id
    }
    
    // getExtraString returns the extra string for the provided ID.
    // The ID must have been produced by addExtraString for this evTable.
    func (t *evTable) getExtraString(id extraStringID) string {
    	if id == 0 {
    		return ""
    	}
    	return t.extraStrings[id-1]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/go/doc/testdata/testing.go

    // Copyright 2009 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 testing provides support for automated testing of Go packages.
    // It is intended to be used in concert with the “go test” utility, which automates
    // execution of any function of the form
    //     func TestXxx(*testing.T)
    // where Xxx can be any alphanumeric string (but the first letter must not be in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  6. src/net/textproto/header.go

    	h[CanonicalMIMEHeaderKey(key)] = []string{value}
    }
    
    // Get gets the first value associated with the given key.
    // It is case insensitive; [CanonicalMIMEHeaderKey] is used
    // to canonicalize the provided key.
    // If there are no values associated with the key, Get returns "".
    // To use non-canonical keys, access the map directly.
    func (h MIMEHeader) Get(key string) string {
    	if h == nil {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/crypto/ed25519/ed25519.go

    	xx, ok := x.(PrivateKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(priv, xx) == 1
    }
    
    // Seed returns the private key seed corresponding to priv. It is provided for
    // interoperability with RFC 8032. RFC 8032's private keys correspond to seeds
    // in this package.
    func (priv PrivateKey) Seed() []byte {
    	return bytes.Clone(priv[:SeedSize])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/os/signal/signal.go

    		}
    	} else {
    		for _, s := range sigs {
    			remove(signum(s))
    		}
    	}
    }
    
    // Ignore causes the provided signals to be ignored. If they are received by
    // the program, nothing will happen. Ignore undoes the effect of any prior
    // calls to [Notify] for the provided signals.
    // If no signals are provided, all incoming signals will be ignored.
    func Ignore(sig ...os.Signal) {
    	cancel(sig, ignoreSignal)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/internal/types/testdata/examples/inference.go

    	// mixed can be called with explicit instantiation.
    	mixed[int, string, bool](0, "", false)
    
    	// Alternatively, partial type arguments may be provided
    	// (from left to right), and the other may be inferred.
    	mixed[int, string](0, "", false)
    	mixed[int](0, "", false)
    	mixed(0, "", false)
    
    	// Provided type arguments always take precedence over
    	// inferred types.
    	mixed[int, string](1.1 /* ERROR "cannot use 1.1" */, "", false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/3-structs.md

    ### New structs package
    
    The new [structs] package provides
    types for struct fields that modify properties of
    the containing struct type such as memory layout.
    
    In this release, the only such type is
    [`HostLayout`](/pkg/structs#HostLayout)
    which indicates that a structure with a field of that
    type has a layout that conforms to host platform
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:06:02 UTC 2024
    - 356 bytes
    - Viewed (0)
Back to top