Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 561 for yearly (0.15 sec)

  1. src/cmd/compile/internal/walk/assign.go

    			}
    			return false
    		})
    	}
    
    	// If a needed expression may be affected by an
    	// earlier assignment, make an early copy of that
    	// expression and use the copy instead.
    	var early ir.Nodes
    	save := func(np *ir.Node) {
    		if n := *np; affected(n) {
    			*np = copyExpr(n, n.Type(), &early)
    		}
    	}
    
    	var late ir.Nodes
    	for i, lorig := range nl {
    		l, r := lorig, nr[i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. pkg/serviceaccount/claims_test.go

    			sa:   sa,
    			node: node,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    			err: "token bound to Node object requested, but \"ServiceAccountTokenNodeBinding\" feature gate is disabled",
    		},
    		{
    			// node & pod with feature gate disabled
    			sa:   sa,
    			node: node,
    			pod:  pod,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/crypto/tls/quic_test.go

    	if cliSecret.secret == nil {
    		t.Errorf("client did not receive early data write secret")
    	}
    	srvSecret := srv2.readSecret[QUICEncryptionLevelEarly]
    	if srvSecret.secret == nil {
    		t.Errorf("server did not receive early data read secret")
    	}
    	if cliSecret.suite != srvSecret.suite || !bytes.Equal(cliSecret.secret, srvSecret.secret) {
    		t.Errorf("client early data secret does not match server")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertFileContent('WEB-INF/web.xml', 'good')
        }
    
        @Issue("GRADLE-3522")
        @ToBeFixedForConfigurationCache(because = "early dependency resolution")
        def "war task doesn't trigger dependency resolution early"() {
            when:
            buildFile << """
    configurations {
        conf
    }
    
    task assertUnresolved {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. CHANGELOG.md

     *  Fix: Don't infinite loop when a received web socket message has self-terminating compressed
        data.
    
     *  Fix: Don't fail the call when the response code is ‘HTTP 102 Processing’ or ‘HTTP 103 Early
        Hints’.
    
     *  Fix: Honor interceptors' changes to connect and read timeouts.
    
     *  Fix: Recover gracefully when a cached response is corrupted on disk.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. src/encoding/binary/binary.go

    func (littleEndian) Uint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (littleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (littleEndian) AppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/productpage.py

                'title': 'The Comedy of Errors',
                'descriptionHtml': '<a href="https://en.wikipedia.org/wiki/The_Comedy_of_Errors">Wikipedia Summary</a>: The Comedy of Errors is one of <b>William Shakespeare\'s</b> early plays. It is his shortest and one of his most farcical comedies, with a major part of the humour coming from slapstick and mistaken identity, in addition to puns and word play.'
            }
        ]
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. cmd/object-lambda-handlers.go

    var statusTextToCode = map[string]int{
    	"Continue":                        http.StatusContinue,
    	"Switching Protocols":             http.StatusSwitchingProtocols,
    	"Processing":                      http.StatusProcessing,
    	"Early Hints":                     http.StatusEarlyHints,
    	"OK":                              http.StatusOK,
    	"Created":                         http.StatusCreated,
    	"Accepted":                        http.StatusAccepted,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/shell.go

    		cmd.Dir = dir
    	}
    	cmd.Env = cmd.Environ() // Pre-allocate with correct PWD.
    
    	// Add the TOOLEXEC_IMPORTPATH environment variable for -toolexec tools.
    	// It doesn't really matter if -toolexec isn't being used.
    	// Note that a.Package.Desc is not really an import path,
    	// but this is consistent with 'go list -f {{.ImportPath}}'.
    	// Plus, it is useful to uniquely identify packages in 'go list -json'.
    	if a != nil && a.Package != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. README.md

    ## Container Installation
    
    Use the following commands to run a standalone MinIO server as a container.
    
    Standalone MinIO servers are best suited for early development and evaluation. Certain features such as versioning, object locking, and bucket replication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top