Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,010 for noted (0.06 sec)

  1. src/cmd/internal/obj/x86/obj6.go

    		p = obj.Appendp(p, newprog)
    		p.As = AADJSP
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = int64(localoffset)
    		p.Spadj = localoffset
    	}
    
    	// Delve debugger would like the next instruction to be noted as the end of the function prologue.
    	// TODO: are there other cases (e.g., wrapper functions) that need marking?
    	if autoffset != 0 {
    		p.Pos = p.Pos.WithXlogue(src.PosPrologueEnd)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package note defines the notes signed by the Go module database server.
    //
    // A note is text signed by one or more server keys.
    // The text should be ignored unless the note is signed by
    // a trusted server key and the signature has been verified
    // using the server's public key.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

       * won't cause a rehash.
       *
       * <p>As of jdk7u40, HashMap has an empty-map optimization. The argument to new HashMap(int) is
       * noted, but the initial table is a zero-length array.
       *
       * <p>This test may fail miserably on non-OpenJDK environments...
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    			if ldr.SymType(s) != sym.SDATA && ldr.SymType(s) != sym.SRODATA {
    				break
    			}
    		}
    		// Generate R_PPC64_RELATIVE relocations for best
    		// efficiency in the dynamic linker.
    		//
    		// As noted above, symbol addresses have not been
    		// assigned yet, so we can't generate the final reloc
    		// entry yet. We ultimately want:
    		//
    		// r_offset = s + r.Off
    		// r_info = R_PPC64_RELATIVE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. helm/minio/templates/NOTES.txt

    MinIO can be accessed via port {{ .Values.service.port }} on an external IP address. Get the service external IP address by:
    kubectl get svc --namespace {{ .Release.Namespace }} -l app={{ template "minio.fullname" . }}
    
    Note that the public IP may take a couple of minutes to be available.
    
    You can now access MinIO server on http://<External-IP>:9000. Follow the below steps to connect to MinIO server with mc client:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/internal/buildid/note.go

    				return "", err
    			}
    
    			note = make([]byte, p.Filesz)
    			_, err = io.ReadFull(f, note)
    			if err != nil {
    				return "", err
    			}
    		}
    
    		filesz := p.Filesz
    		off := p.Off
    		for filesz >= 16 {
    			nameSize := ef.ByteOrder.Uint32(note)
    			valSize := ef.ByteOrder.Uint32(note[4:])
    			tag := ef.ByteOrder.Uint32(note[8:])
    			nname := note[12:16]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/release/notes.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/flannel/l2bridge/start.ps1#L74
      # (or
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1#L206).
      #
      # daschott noted on Slack: "L2bridge networks require an external vSwitch.
      # The first network ("External") with hardcoded values in the script is just
      # a placeholder to create an external vSwitch. This is purely for convenience
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // STXVD2X with VPERM to reorder bytes correctly.
    
    // I have identified some areas where I believe
    // changes would be needed to make this work for big
    // endian; however additional changes beyond what I
    // have noted are most likely needed to make it work.
    // - The string used with VPERM to swap the byte order
    //   for loads and stores.
    // - The constants that are loaded from CPOOL.
    //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
        Note over client,tasks: Can raise exception for dependency, handled after response is sent
        Note over client,operation: Can raise HTTPException and can change the response
        client ->> dep: Start request
        Note over dep: Run code up to yield
        opt raise
            dep -->> handler: Raise HTTPException
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top