Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for headerv3 (0.1 sec)

  1. src/runtime/map.go

    	noCheck = 1<<(8*goarch.PtrSize) - 1
    )
    
    // isEmpty reports whether the given tophash array entry represents an empty bucket entry.
    func isEmpty(x uint8) bool {
    	return x <= emptyOne
    }
    
    // A header for a Go map.
    type hmap struct {
    	// Note: the format of the hmap is also encoded in cmd/compile/internal/reflectdata/reflect.go.
    	// Make sure this stays in sync with the compiler's definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    function Get_IpAliasRange {
      $url = ("http://${GCE_METADATA_SERVER}/computeMetadata/v1/instance/" +
              "network-interfaces/0/ip-aliases/0")
      $client = New-Object Net.WebClient
      $client.Headers.Add('Metadata-Flavor', 'Google')
      return ($client.DownloadString($url)).Trim()
    }
    
    # Retrieves the pod CIDR and sets it in $env:POD_CIDR.
    function Set-PodCidr {
      while($true) {
        $pod_cidr = Get_IpAliasRange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	return &ast.BadExpr{From: s.Pos(), To: p.safePos(s.End())}
    }
    
    // parseIfHeader is an adjusted version of parser.header
    // in cmd/compile/internal/syntax/parser.go, which has
    // been tuned for better error handling.
    func (p *parser) parseIfHeader() (init ast.Stmt, cond ast.Expr) {
    	if p.tok == token.LBRACE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      EXPECT_TRUE(foo.Blah(GetParam()));
    }
    
    #endif  // 0
    
    #include "gtest/internal/gtest-port.h"
    
    #if !GTEST_OS_SYMBIAN
    # include <utility>
    #endif
    
    // scripts/fuse_gtest.py depends on gtest's own header being #included
    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-param-util.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    originally mentioned in the feature documentation (which had an `unsafe` part in their names, e.g. `org.gradle.unsafe.configuration-cache`) were renamed, in some cases, by just removing the `unsafe` bit.
    
    [cols="1,1", options="header"]
    |===
    
    | Incubating property
    | Finalized property
    
    |`org.gradle.unsafe.configuration-cache`
    |`org.gradle.configuration-cache`
    
    |`org.gradle.unsafe.configuration-cache-problems`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      EXPECT_TRUE(foo.Blah(GetParam()));
    }
    
    #endif  // 0
    
    #include "gtest/internal/gtest-port.h"
    
    #if !GTEST_OS_SYMBIAN
    # include <utility>
    #endif
    
    // scripts/fuse_gtest.py depends on gtest's own header being #included
    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-param-util.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    			}
    			// For this to be worthwhile, the loop must have no calls in it.
    			top := b.Succs[0].b
    			loop := s.loopnest.b2l[top.ID]
    			if loop == nil || loop.header != top || loop.containsUnavoidableCall {
    				goto badloop
    			}
    
    			// TODO: sort by distance, pick the closest ones?
    			for _, live := range s.live[b.ID] {
    				if live.dist >= unlikelyDistance {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top