Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 732 for MARK (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

    ): Parser<T> = {
        val mark = currentPosition
        when (val lr = left()) {
            is ParserResult.Failure -> {
                restore(mark)
                right().map(r)
            }
    
            is ParserResult.Success -> {
                lr.map(l)
            }
        }
    }
    
    
    internal
    fun <T> optional(parser: Parser<T>): Parser<T?> = {
        val mark = currentPosition
        when (val r = parser()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableTypedResolveResultTest.groovy

            result.failed(failure)
    
            when:
            result.result
    
            then:
            def e = thrown(RuntimeException)
            e == failure
        }
    
        def "can mark as failed after resolved"() {
            given:
            def failure = new RuntimeException()
            result.resolved("result")
            result.failed(failure)
    
            expect:
            result.hasResult()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/runtime/mpagecache.go

    	if c.cache == 0 {
    		return 0, 0
    	}
    	if npages == 1 {
    		i := uintptr(sys.TrailingZeros64(c.cache))
    		scav := (c.scav >> i) & 1
    		c.cache &^= 1 << i // set bit to mark in-use
    		c.scav &^= 1 << i  // clear bit to mark unscavenged
    		return c.base + i*pageSize, uintptr(scav) * pageSize
    	}
    	return c.allocN(npages)
    }
    
    // allocN is a helper which attempts to allocate npages worth of pages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/objz.go

    				q.To.Reg = REGSP
    				q.To.Offset = 0
    			} else if c.cursym.Func().Text.Mark&LEAF == 0 {
    				// A very few functions that do not return to their caller
    				// (e.g. gogo) are not identified as leaves but still have
    				// no frame.
    				c.cursym.Func().Text.Mark |= LEAF
    			}
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				c.cursym.Set(obj.AttrLeaf, true)
    				break
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/unicode/graphic.go

    		return properties[uint8(r)]&(pLmask) != 0
    	}
    	return isExcludingLatin(Letter, r)
    }
    
    // IsMark reports whether the rune is a mark character (category [M]).
    func IsMark(r rune) bool {
    	// There are no mark characters in Latin-1.
    	return isExcludingLatin(Mark, r)
    }
    
    // IsNumber reports whether the rune is a number (category [N]).
    func IsNumber(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    			work.nBSSRoots = nBSSRoots
    		}
    	}
    
    	// Scan span roots for finalizer specials.
    	//
    	// We depend on addfinalizer to mark objects that get
    	// finalizers after root marking.
    	//
    	// We're going to scan the whole heap (that was available at the time the
    	// mark phase started, i.e. markArenas) for in-use spans which have specials.
    	//
    	// Break up the work into arenas, and further into chunks.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. docs/en/docs/css/custom.css

      direction: ltr;
      display: inline-block;
    }
    
    a.external-link::after {
      /* \00A0 is a non-breaking space
            to make the mark be on the same line as the link
        */
      content: "\00A0[↪]";
    }
    
    a.internal-link::after {
      /* \00A0 is a non-breaking space
            to make the mark be on the same line as the link
        */
      content: "\00A0↪";
    }
    
    .shadow {
      box-shadow: 5px 5px 10px #999;
    }
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 09:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/templates/404.html

    {{ define "title" }}Page Not Found{{ end }}
    {{ define "content" }}
    <div class="notfound">
        <div class="icon">
            <img alt="Warning" title="Uh-oh" src="/img/exclamation-mark.svg" />
        </div>
    
        <div class="error">
            We're sorry, the page you requested cannot be found
        </div>
    
        <div class="explanation">
            The URL may be misspelled
        </div>
    </div>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 389 bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    309B          ; disallowed_STD3_mapped ; 0020 3099     # 1.1  KATAKANA-HIRAGANA VOICED SOUND MARK
    309C          ; disallowed_STD3_mapped ; 0020 309A     # 1.1  KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
    309D..309E    ; valid                                  # 1.1  HIRAGANA ITERATION MARK..HIRAGANA VOICED ITERATION MARK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/obj5.go

    	 */
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		switch p.As {
    		case obj.ATEXT:
    			p.Mark |= LEAF
    
    		case ADIV, ADIVU, AMOD, AMODU:
    			cursym.Func().Text.Mark &^= LEAF
    
    		case ABL,
    			ABX,
    			obj.ADUFFZERO,
    			obj.ADUFFCOPY:
    			cursym.Func().Text.Mark &^= LEAF
    		}
    	}
    
    	var q2 *obj.Prog
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		o := p.As
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top