Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for opcode (0.15 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

      in the underlying code that were hidden by the incorrect unit tests. ([#122892](https://github.com/kubernetes/kubernetes/pull/122892), [@danwinship](https://github.com/danwinship)) [SIG API Machinery, Auth, Cloud Provider, Instrumentation and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	// This code is like the above sequence but without saving/restoring g
    	// and without worrying about the stack moving out from under us
    	// (because we're on a system stack, not a goroutine stack).
    	// The above code could be used directly if already on a system stack,
    	// but then the only path through this code would be a rare case on Solaris.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	pos0 := p.pos
    	if name0 != nil {
    		pos0 = name0.Pos()
    	} else if typ0 != nil {
    		pos0 = typ0.Pos()
    	}
    
    	// Note: The code below matches the corresponding code in the syntax
    	//       parser closely. Changes must be reflected in either parser.
    	//       For the code to match, we use the local []field list that
    	//       corresponds to []syntax.Field. At the end, the list must be
    	//       converted into an []*ast.Field.
    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. src/cmd/compile/internal/ssa/regalloc.go

    			c = e.p.NewValue1(pos, OpCopy, c.Type, c)
    		} else {
    			c = e.p.NewValue1(pos, OpLoadReg, c.Type, c)
    		}
    		e.set(r, vid, c, false, pos)
    		if c.Op == OpLoadReg && e.s.isGReg(register(r.(*Register).num)) {
    			e.s.f.Fatalf("process.OpLoadReg targeting g: " + c.LongString())
    		}
    	}
    }
    
    // processDest generates code to put value vid into location loc. Returns true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

        [parameter(Mandatory=$true)] [string] $File
      )
    
      if (-not (ShouldWrite-File $File)) {
        return
      }
    
      # This command writes out a PEM certificate file, analogous to "base64
      # --decode" on Linux. See https://stackoverflow.com/a/51914136/1230197.
      [IO.File]::WriteAllBytes($File, [Convert]::FromBase64String($Data))
      Log_Todo ("need to set permissions correctly on ${File}; not sure what the " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/testing/testing.go

    // It also provides a way to share common setup and tear-down code:
    //
    //	func TestFoo(t *testing.T) {
    //	    // <setup code>
    //	    t.Run("A=1", func(t *testing.T) { ... })
    //	    t.Run("A=2", func(t *testing.T) { ... })
    //	    t.Run("B=1", func(t *testing.T) { ... })
    //	    // <tear-down code>
    //	}
    //
    // Each subtest and sub-benchmark has a unique name: the combination of the name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	treq *transportRequest
    	ch   chan responseAndError // unbuffered; always send in select on callerGone
    
    	// whether the Transport (as opposed to the user client code)
    	// added the Accept-Encoding gzip header. If the Transport
    	// set it, only then do we transparently decode the gzip.
    	addedGzip bool
    
    	// Optional blocking chan for Expect: 100-continue (for send).
    	// If the request has an "Expect: 100-continue" header and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		if target.IsPIE() && target.IsInternal() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			MachoAddBind(int64(ldr.SymGot(s)), s)
    		}
    	} else {
    		ldr.Errorf(s, "addgotsym: unsupported binary format")
    	}
    }
    
    var hostobjcounter int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top