Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 385 for anyone (0.13 sec)

  1. src/internal/types/testdata/fixedbugs/issue50929.go

    	var x F /* ERROR "not enough type arguments for type F: have 1, want 2" */ [int]
    	G(x /* ERROR "does not match" */)
    }
    
    // test case from issue
    // (lots of errors but doesn't crash anymore)
    
    type RC[G any, RG any] interface {
    	~[]RG
    }
    
    type RG[G any] struct{}
    
    type RSC[G any] []*RG[G]
    
    type M[Rc RC[G, RG], G any, RG any] struct {
    	Fn func(Rc)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/net/netip/uint128_test.go

    		{uint128{1, 0}, sub1, uint128{0, ^uint64(0)}},
    		{uint128{1, 1}, sub1, uint128{1, 0}},
    	}
    	for _, tt := range tests {
    		var got uint128
    		switch tt.op {
    		case add1:
    			got = tt.in.addOne()
    		case sub1:
    			got = tt.in.subOne()
    		default:
    			panic("bogus op")
    		}
    		if got != tt.want {
    			t.Errorf("%v add %d = %v; want %v", tt.in, tt.op, got, tt.want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 01:28:01 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportingConverter.java

     * i.e. <code>reportPlugins</code> and <code>outputDirectory</code> parameters.
     *
     * @deprecated since maven 4.0, this interface is not used anymore and is only here for compatibility
     */
    @Deprecated
    public interface ReportingConverter {
    
        /**
         * Converts values from model's reporting section into the configuration for Maven Site Plugin 3.x.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tools/packaging/postinst.sh

    # pilot-agent and envoy may run with effective uid 0 in order to run envoy with
    # CAP_NET_ADMIN, so any iptables rule matching on "-m owner --uid-owner
    # istio-proxy" will not match connections from those processes anymore.
    # Instead, rely on the process's effective gid being istio-proxy and create a
    # "-m owner --gid-owner istio-proxy" iptables rule in istio-iptables.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 10 18:31:12 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. src/runtime/debugcall.go

    		// Park the calling goroutine.
    		trace := traceAcquire()
    		if trace.ok() {
    			// Trace the event before the transition. It may take a
    			// stack trace, but we won't own the stack after the
    			// transition anymore.
    			trace.GoPark(traceBlockDebugCall, 1)
    		}
    		casGToWaiting(gp, _Grunning, waitReasonDebugCall)
    		if trace.ok() {
    			traceRelease(trace)
    		}
    		dropg()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/crypto/internal/hpke/hpke.go

    	// Message limit is, according to the RFC, 2^95+1, which
    	// is somewhat confusing, but we do as we're told.
    	if s.seqNum.bitLen() >= (s.aead.NonceSize()*8)-1 {
    		panic("message limit reached")
    	}
    	s.seqNum = s.seqNum.addOne()
    	return nonce
    }
    
    func (s *Sender) Seal(aad, plaintext []byte) ([]byte, error) {
    
    	ciphertext := s.aead.Seal(nil, s.nextNonce(), plaintext, aad)
    	return ciphertext, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/math/big/gcd_test.go

    package big
    
    import (
    	"math/rand"
    	"testing"
    )
    
    // randInt returns a pseudo-random Int in the range [1<<(size-1), (1<<size) - 1]
    func randInt(r *rand.Rand, size uint) *Int {
    	n := new(Int).Lsh(intOne, size-1)
    	x := new(Int).Rand(r, n)
    	return x.Add(x, n) // make sure result > 1<<(size-1)
    }
    
    func runGCD(b *testing.B, aSize, bSize uint) {
    	if isRaceBuilder && (aSize > 1000 || bSize > 1000) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 19:11:43 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  8. docs/kms/IAM.md

    ```
    
    > You can choose an arbitrary name for the key - instead of `my-minio-key`.
    > Please note that losing the `MINIO_KMS_SECRET_KEY` will cause data loss
    > since you will not be able to decrypt the IAM/configuration data anymore.
    For distributed MinIO deployments, specify the *same* `MINIO_KMS_SECRET_KEY` for each MinIO server process.
    
    At any point in time you can switch from `MINIO_KMS_SECRET_KEY` to a full KMS
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. test/return.go

    		goto L
    	}
    }
    
    func _() int {
    	print(1)
    	select {
    	case <-c:
    		print(2)
    		panic("abc")
    	default:
    		select{}
    	}
    }
    
    // if any cases don't terminate, the select isn't okay anymore
    
    func _() int {
    	print(1)
    	select {
    	case <-c:
    		print(2)
    	}
    } // ERROR "missing return"
    
    func _() int {
    L:
    	print(1)
    	select {
    	case <-c:
    		print(2)
    		panic("abc")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  10. docs/en/docs/how-to/configure-swagger-ui.md

    But you can disable it by setting `syntaxHighlight` to `False`:
    
    ```Python hl_lines="3"
    {!../../../docs_src/configure_swagger_ui/tutorial001.py!}
    ```
    
    ...and then Swagger UI won't show the syntax highlighting anymore:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Change the Theme
    
    The same way you could set the syntax highlighting theme with the key `"syntaxHighlight.theme"` (notice that it has a dot in the middle):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top