Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 562 for stsr (0.06 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

    /* Clever use of RTL to fill in all stars to left of hover position */
    .rating {
        direction: rtl;
    }
    .rating > .star {
        cursor: pointer;
        padding: 3px;
    }
    .rating > .star:hover > svg > g,
    .rating > .star:hover ~ .star > svg > g,
    .rating > .star.selected > svg > g,
    .rating > .star.selected ~ .star > svg > g {
        fill: #999;
    }
    
    /* Footer styles */
    .site-footer {
    }
    
    .site-footer__navigation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	if _, ok := x.(*ast.CompositeLit); ok {
    		return nil
    	}
    	if _, ok := x.(*ast.CallExpr); ok {
    		// A call may return a zero value.
    		return nil
    	}
    	if star, ok := x.(*ast.StarExpr); ok {
    		if _, ok := astutil.Unparen(star.X).(*ast.CallExpr); ok {
    			// A call may return a pointer to a zero value.
    			return nil
    		}
    	}
    	if tv, ok := pass.TypesInfo.Types[x]; ok && tv.IsValue() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/go/printer/comment.go

    		b := c[i]
    		if !('a' <= b && b <= 'z' || '0' <= b && b <= '9') {
    			return false
    		}
    	}
    	return true
    }
    
    // allStars reports whether text is the interior of an
    // old-style /* */ comment with a star at the start of each line.
    func allStars(text string) bool {
    	for i := 0; i < len(text); i++ {
    		if text[i] == '\n' {
    			j := i + 1
    			for j < len(text) && (text[j] == ' ' || text[j] == '\t') {
    				j++
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. src/net/http/routing_index_test.go

    func genRepeat(n int, g generator) generator {
    	if n == 0 {
    		return genConst("")
    	}
    	return genConcat(g, genRepeat(n-1, g))
    }
    
    // genStar (named after the Kleene star) generates 0, 1, 2, ..., max
    // copies of the strings of g.
    func genStar(max int, g generator) generator {
    	return func(collect func(string)) {
    		for i := 0; i <= max; i++ {
    			genRepeat(i, g)(collect)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    			}
    		} else {
    			// *T
    			typ = p.parseQualifiedIdent(nil)
    		}
    		typ = &ast.StarExpr{Star: star, X: typ}
    
    	case token.LPAREN:
    		p.error(p.pos, "cannot parenthesize embedded type")
    		p.next()
    		if p.tok == token.MUL {
    			// (*T)
    			star := p.pos
    			p.next()
    			typ = &ast.StarExpr{Star: star, X: p.parseQualifiedIdent(nil)}
    		} else {
    			// (T)
    			typ = p.parseQualifiedIdent(nil)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. src/archive/tar/format.go

    	//
    	// Reference:
    	//	https://www.gnu.org/software/tar/manual/html_node/Standard.html
    	FormatGNU
    
    	// Schily's tar format, which is incompatible with USTAR.
    	// This does not cover STAR extensions to the PAX format; these fall under
    	// the PAX format.
    	formatSTAR
    
    	formatMax
    )
    
    func (f Format) has(f2 Format) bool   { return f&f2 != 0 }
    func (f *Format) mayBe(f2 Format)     { *f |= f2 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

    import gradlebuild.basics.kotlindsl.execAndGetStdout
    import io.mockk.every
    import io.mockk.mockkStatic
    import io.mockk.unmockkStatic
    import org.gradle.internal.os.OperatingSystem
    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    import org.gradle.testfixtures.ProjectBuilder
    import org.junit.After
    import org.junit.Assume
    import org.junit.Before
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/ConfigureLambdaHandler.kt

        private
        val typeParameters = functionalInterface.typeParameters
        private
        val starProjectedType = functionalInterface.createType(typeParameters.map { KTypeProjection.STAR })
        private
        val staticallyKnownConfiguredType = if (functionalInterface.typeParameters.isEmpty())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/archive/tar/reader.go

    				hdr.Format = FormatUnknown // Numeric fields must end in NUL
    			}
    		case format.has(formatSTAR):
    			star := tr.blk.toSTAR()
    			prefix = p.parseString(star.prefix())
    			hdr.AccessTime = time.Unix(p.parseNumeric(star.accessTime()), 0)
    			hdr.ChangeTime = time.Unix(p.parseNumeric(star.changeTime()), 0)
    		case format.has(FormatGNU):
    			hdr.Format = format
    			var p2 parser
    			gnu := tr.blk.toGNU()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/anames.go

    	"REM",
    	"REMU",
    	"RFI",
    	"RLWMI",
    	"RLWMICC",
    	"RLWNM",
    	"RLWNMCC",
    	"CLRLSLWI",
    	"SLW",
    	"SLWCC",
    	"SRW",
    	"SRAW",
    	"SRAWCC",
    	"SRWCC",
    	"STBCCC",
    	"STHCCC",
    	"STSW",
    	"STWCCC",
    	"SUB",
    	"SUBCC",
    	"SUBVCC",
    	"SUBC",
    	"SUBCCC",
    	"SUBCV",
    	"SUBCVCC",
    	"SUBME",
    	"SUBMECC",
    	"SUBMEVCC",
    	"SUBMEV",
    	"SUBV",
    	"SUBE",
    	"SUBECC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top