Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 433 for provider (0.17 sec)

  1. src/runtime/tracestatus.go

    	}
    
    	// Trace any special ranges that are in-progress.
    	if markAssist {
    		w = w.event(traceEvGCMarkAssistActive, traceArg(goid))
    	}
    	return w
    }
    
    // writeProcStatusForP emits a ProcStatus event for the provided p based on its status.
    //
    // The caller must fully own pp and it must be prevented from transitioning (e.g. this can be
    // called by a forEachP callback or from a STW).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/crypto/x509/root_windows.go

    	if err != nil {
    		return err
    	}
    
    	// TODO(mkrautz): use the lChainIndex and lElementIndex fields
    	// of the CertChainPolicyStatus to provide proper context, instead
    	// using c.
    	if status.Error != 0 {
    		switch status.Error {
    		case syscall.CERT_E_EXPIRED:
    			return CertificateInvalidError{c, Expired, ""}
    		case syscall.CERT_E_CN_NO_MATCH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/internal/codesign/codesign.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 codesign provides basic functionalities for
    // ad-hoc code signing of Mach-O files.
    //
    // This is not a general tool for code-signing. It is made
    // specifically for the Go toolchain. It uses the same
    // ad-hoc signing algorithm as the Darwin linker.
    package codesign
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/crypto/aes/block.go

    //	@author Antoon Bosselaers <******@****.***>
    //	@author Paulo Barreto <******@****.***>
    //
    //	This code is hereby placed in the public domain.
    //
    //	THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
    //	OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    //	WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/crypto/x509/pkix/pkix.go

    	// The ExtraNames field is not populated when parsing, see Names.
    	ExtraNames []AttributeTypeAndValue
    }
    
    // FillFromRDNSequence populates n from the provided [RDNSequence].
    // Multi-entry RDNs are flattened, all entries are added to the
    // relevant n fields, and the grouping is not preserved.
    func (n *Name) FillFromRDNSequence(rdns *RDNSequence) {
    	for _, rdn := range *rdns {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. src/encoding/ascii85/ascii85.go

    			nb = 0
    			v = 0
    		}
    	}
    	if flush {
    		nsrc = len(src)
    		if nb > 0 {
    			// The number of output bytes in the last fragment
    			// is the number of leftover input bytes - 1:
    			// the extra byte provides enough bits to cover
    			// the inefficiency of the encoding for the block.
    			if nb == 1 {
    				return 0, 0, CorruptInputError(len(src))
    			}
    			for i := nb; i < 5; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/generate_invalid.txt

    ! go generate ./nogo
    ! stdout 'Fail'
    stderr 'no Go files'
    
    # Test go  generate for module which doesn't exist should fail
    ! go generate foo.bar/nothing
    stderr 'no required module provides package foo.bar/nothing'
    
    # Test go generate for package where all .go files are excluded by build
    # constraints
    go generate -v ./excluded
    ! stdout 'Fail'
    ! stderr 'go' # -v shouldn't list any files
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt_test.go

    			t.Error(err)
    		}
    	}
    }
    
    // TestRewrite processes testdata/*.input files and compares them to the
    // corresponding testdata/*.golden files. The gofmt flags used to process
    // a file must be provided via a comment of the form
    //
    //	//gofmt flags
    //
    // in the processed file within the first 20 lines, if any.
    func TestRewrite(t *testing.T) {
    	// determine input files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/doc.go

    //
    // The most important function of package language is to match a list of
    // user-preferred languages to a list of supported languages.
    // It alleviates the developer of dealing with the complexity of this process
    // and provides the user with the best experience
    // (see https://blog.golang.org/matchlang).
    //
    // # Matching preferred against supported languages
    //
    // A Matcher for an application that supports English, Australian English,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/math/big/doc.go

    argument x, [NewRat](a, b) returns a *[Rat] set to the fraction a/b where
    a and b are int64 values, and [NewFloat](f) returns a *[Float] initialized
    to the float64 argument f. More flexibility is provided with explicit
    setters, for instance:
    
    	var z1 Int
    	z1.SetUint64(123)                 // z1 := 123
    	z2 := new(Rat).SetFloat64(1.25)   // z2 := 5/4
    	z3 := new(Float).SetInt(z1)       // z3 := 123.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top