Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for T_simple (0.34 sec)

  1. guava/src/com/google/common/util/concurrent/Futures.java

         * exceptions' docs suggest that either is acceptable. Google's Java Practices page recommends
         * IllegalArgumentException here, in part to keep its recommendation simple: Static methods
         * should throw IllegalStateException only when they use static state.
         *
         * Why do we deviate here? The answer: We want for fluentFuture.getDone() to throw the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    	}
    	return bodySize
    }
    
    // funcBody prints a function body following a function header of given headerSize.
    // If the header's and block's size are "small enough" and the block is "simple enough",
    // the block is printed on the current line, without line breaks, spaced from the header
    // by sep. Otherwise the block's opening "{" is printed on the current line, followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    	}
    
    	assert := func(ok bool, _ string) {
    		t.Helper()
    		if !ok {
    			t.Error("test case failed")
    		}
    	}
    	assertNot := func(ok bool, _ string) { t.Helper(); assert(!ok, "") }
    
    	// Simple tests.
    	assert(shouldTest("// +build linux", "linux", "arm"))
    	assert(shouldTest("// +build !windows", "linux", "arm"))
    	assertNot(shouldTest("// +build !windows", "windows", "amd64"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	c := new(CommClause)
    	c.pos = p.pos()
    
    	switch p.tok {
    	case _Case:
    		p.next()
    		c.Comm = p.simpleStmt(nil, 0)
    
    		// The syntax restricts the possible simple statements here to:
    		//
    		//     lhs <- x (send statement)
    		//     <-x
    		//     lhs = <-x
    		//     lhs := <-x
    		//
    		// All these (and more) are recognized by simpleStmt and invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	// arm < 7. See internal/runtime/atomic/sys_linux_arm.s.
    	//
    	// Start in the caller's frame.
    	if GOARCH == "arm" && goarm < 7 && GOOS == "linux" && frame.pc&0xffff0000 == 0xffff0000 {
    		// Note that the calls are simple BL without pushing the return
    		// address, so we use LR directly.
    		//
    		// The kernel helpers are frameless leaf functions, so SP and
    		// LR are not touched.
    		frame.pc = frame.lr
    		frame.lr = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	anonReq *http.Request, bucketPolicy *policy.BucketPolicy,
    ) {
    	anonTestStr := "Anonymous HTTP request test"
    	unknownSignTestStr := "Unknown HTTP signature test"
    
    	// simple function which returns a message which gives the context of the test
    	// and then followed by the actual error message.
    	failTestStr := func(testType, failMsg string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        @Test
        void testPluginInheritanceSimple() throws Exception {
            PomTestWrapper pom = this.buildPom("plugin-inheritance-simple/sub");
            assertEquals(2, ((List<?>) pom.getValue("build/plugins")).size());
        }
    
        @Test
        void testPluginManagementDuplicate() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    // For large types containing arrays, the type information has a
    // natural repetition that can be encoded to save space in the
    // binary and in the memory representation of the type information.
    //
    // The encoding is a simple Lempel-Ziv style bytecode machine
    // with the following instructions:
    //
    //	00000000: stop
    //	0nnnnnnn: emit n bits copied from the next (n+7)/8 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. cmd/admin-handlers-users.go

    			}
    			opts.claims[k] = v
    		}
    	} else if globalIAMSys.LDAPConfig.Enabled() {
    		// In case of LDAP we need to resolve the targetUser to a DN and
    		// query their groups:
    		opts.claims[ldapUserN] = targetUser // simple username
    		var lookupResult *xldap.DNSearchResult
    		lookupResult, targetGroups, err = globalIAMSys.LDAPConfig.LookupUserDN(targetUser)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	for chunk != 0 {
    		if p >= chunk && p < chunk+persistentChunkSize {
    			return true
    		}
    		chunk = *(*uintptr)(unsafe.Pointer(chunk))
    	}
    	return false
    }
    
    // linearAlloc is a simple linear allocator that pre-reserves a region
    // of memory and then optionally maps that region into the Ready state
    // as needed.
    //
    // The caller is responsible for locking.
    type linearAlloc struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top