Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for REM (0.03 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    		// in the last pass.
    		rem := d.markableMethods[:0]
    		for _, m := range d.markableMethods {
    			if (d.reflectSeen && (m.isExported() || d.dynlink)) || d.ifaceMethod[m.m] || d.genericIfaceMethod[m.m.name] {
    				d.markMethod(m)
    			} else {
    				rem = append(rem, m)
    			}
    		}
    		d.markableMethods = rem
    
    		if d.wq.empty() {
    			// No new work was discovered. Done.
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			} else {
    				break
    			}
    		}
    	}
    
    	for _, b := range bs {
    		if h, ok := b.(*md.Heading); ok {
    			rem(h.Level)
    		}
    		addLines(b, -delta)
    		res = append(res, b)
    	}
    	// Remove empty headings at the end of the document.
    	rem(1)
    	return res
    }
    
    func sortedMarkdownFilenames(fsys fs.FS) ([]string, error) {
    	var filenames []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/time/format.go

    	sign := value[0]
    	if sign != '-' && sign != '+' {
    		return 0
    	}
    	x, rem, err := leadingInt(value[1:])
    
    	// fail if nothing consumed by leadingInt
    	if err != nil || value[1:] == rem {
    		return 0
    	}
    	if x > 23 {
    		return 0
    	}
    	return len(value) - len(rem)
    }
    
    func commaOrPeriod(b byte) bool {
    	return b == '.' || b == ','
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                OperatorNameConventions.PLUS,
                OperatorNameConventions.MINUS,
                OperatorNameConventions.TIMES,
                OperatorNameConventions.DIV,
                OperatorNameConventions.REM,
                OperatorNameConventions.MOD,
            )
    
            private val callArgErrors = setOf(
                Errors.ARGUMENT_PASSED_TWICE,
                Errors.MIXING_NAMED_AND_POSITIONED_ARGUMENTS,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

        ): CompoundArrayAccessPartiallyAppliedSymbols? {
            // The last argument of `set` is the new value to be set. This value should be a call to the respective `plus`, `minus`,
            // `times`, `div`, or `rem` function.
            val operationCall = fir.arguments.lastOrNull() as? FirFunctionCall ?: return null
    
            // The explicit receiver in this case is a synthetic FirFunctionCall to `get`, which does not have a corresponding PSI. So
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top