Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,256 for lasta (0.04 sec)

  1. platforms/ide/ide/src/main/resources/org/gradle/plugins/ide/idea/model/defaultProject.xml

                                    </list>
                                </option>
                            </SplitterProportionsDataImpl>
                        </splitter-proportions>
                        <last-edited>1.6</last-edited>
                    </UIState>
                </state>
                <state key="ScopeChooserConfigurable.UI">
                    <UIState>
                        <splitter-proportions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_s390x.s

    // license that can be found in the LICENSE file.
    
    //go:build gc
    
    #include "textflag.h"
    
    // func stfle() facilityList
    TEXT ·stfle(SB), NOSPLIT|NOFRAME, $0-32
    	MOVD $ret+0(FP), R1
    	MOVD $3, R0          // last doubleword index to store
    	XC   $32, (R1), (R1) // clear 4 doublewords (32 bytes)
    	WORD $0xb2b01000     // store facility list extended (STFLE)
    	RET
    
    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.ipr.xml

                    <list>
                      <option value="0.2"/>
                    </list>
                  </option>
                </SplitterProportionsDataImpl>
              </splitter-proportions>
              <last-edited>1.6</last-edited>
            </UIState>
          </state>
          <state key="ScopeChooserConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us - that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion - that we here highly resolve that these dead shall not have died in vain - that this nation, under God, shall have a new birth of freedom - and that government of the people, by the people, for the people, shall not perish...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  5. docs/pt/docs/python-types.md

    Isso significa que: "a variável `items` é uma `list`, e cada um dos itens desta lista é uma `str`".
    
    Ao fazer isso, seu editor pode fornecer suporte mesmo durante o processamento de itens da lista:
    
    <img src="/img/python-types/image05.png">
    
    Sem tipos, isso é quase impossível de alcançar.
    
    Observe que a variável `item` é um dos elementos da lista `items`.
    
    E, ainda assim, o editor sabe que é um `str` e fornece suporte para isso.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof.go

    	w.Header().Set("X-Go-Pprof", "1")
    	w.Header().Del("Content-Disposition")
    	w.WriteHeader(status)
    	fmt.Fprintln(w, txt)
    }
    
    // Profile responds with the pprof-formatted cpu profile.
    // Profiling lasts for duration specified in seconds GET parameter, or for 30 seconds if not specified.
    // The package initialization registers it as /debug/pprof/profile.
    func Profile(w http.ResponseWriter, r *http.Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/crypto/des/block.go

    // to the rotation schedule.
    func ksRotate(in uint32) (out []uint32) {
    	out = make([]uint32, 16)
    	last := in
    	for i := 0; i < 16; i++ {
    		// 28-bit circular left shift
    		left := (last << (4 + ksRotations[i])) >> 4
    		right := (last << 4) >> (32 - ksRotations[i])
    		out[i] = left | right
    		last = out[i]
    	}
    	return
    }
    
    // creates 16 56-bit subkeys from the original key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/syscall/dir_plan9.go

    	// file data
    	Qid    Qid    // unique id from server
    	Mode   uint32 // permissions
    	Atime  uint32 // last read time
    	Mtime  uint32 // last write time
    	Length int64  // file length
    	Name   string // last element of path
    	Uid    string // owner name
    	Gid    string // group name
    	Muid   string // last modifier name
    }
    
    var nullDir = Dir{
    	Type: ^uint16(0),
    	Dev:  ^uint32(0),
    	Qid: Qid{
    		Path: ^uint64(0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

            this.timeoutMs = timeoutMs;
            this.counter = counter;
            this.last = first;
        }
    
        public <T extends TrackingHttpHandler> T addHandler(HandlerFactory<T> factory) {
            lock.lock();
            try {
                T handler = factory.create(last);
                handlers.add(handler);
                last = handler.getWaitPrecondition();
                return handler;
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/modelRules/initializationRuleRunsBeforeConfigurationRules/tests/modelDslInitializationRuleRunsBeforeConfigurationRule.out

    creating person
    configuring person
    last name is Smith, should be Smythe
    
    > Task :showPerson
    Hello John Smythe!
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
Back to top