Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for cheese (0.09 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

     *
     * <p>Supplementary characters are <a
     * href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html#supplementary">encoded
     * into a {@code String} using surrogate pairs</a>, and a {@code CharMatcher} treats these just as
     * two separate characters. {@link #countIn} counts each supplementary character as 2 {@code char}s.
     *
     * <p>For up-to-date Unicode character properties (digit, letter, etc.) and support for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			defer nc.evictorLock.Unlock()
    			// Extracting the value without checking if the key
    			// exists or not is safe to do here since zones do
    			// not get removed, and consequently pod evictors for
    			// these zones also do not get removed, only added.
    			zoneNoExecuteTainterWorker = nc.zoneNoExecuteTainter[k]
    		}()
    		// Function should return 'false' and a time after which it should be retried, or 'true' if it shouldn't (it succeeded).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			clones = false
    		case o == NoClones:
    			clones = false
    		case o == Verbose:
    			verbose = true
    		case o == NoTemplateParams || o == NoEnclosingParams || o == LLVMStyle || isMaxLength(o):
    			// These are valid options but only affect
    			// printing of the AST.
    		case o == NoRust:
    			// Unimportant here.
    		default:
    			return nil, fmt.Errorf("unrecognized demangler option %v", o)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    // equal to 65280 (0xff00) sections.
    func TestLargeNumberOfSections(t *testing.T) {
    	// A file with >= 0xff00 sections is too big, so we will construct it on the
    	// fly. The original file "y.o" is generated by these commands:
    	// 1. generate "y.c":
    	//   for i in `seq 1 65288`; do
    	//     printf -v x "%04x" i;
    	//     echo "int var_$x __attribute__((section(\"section_$x\"))) = $i;"
    	//   done > y.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	color: var(--num-color);
    }
    
    .exampleblock .listingblock {
    	margin: 0;
    }
    
    /*
     * Ensure that blocks of code do not wrap by applying the behavior of `[listing%nowrap]` by default.
     *
     * These styles are copied from a CSS ruleset in asciidoctor.css that has the same group of
     * selectors except that they end with `.nowrap`.
     */
    .openblock .content {
    	background: var(--admonition-background);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    	for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		if q := p.To.Target(); q != nil && q.Pc < p.Pc {
    			q.Mark |= branchLoopHead
    		}
    	}
    
    	// Run these passes until convergence.
    	for {
    		rescan := false
    		pc = 0
    		prev := c.cursym.Func().Text
    		for p = prev.Link; p != nil; prev, p = p, p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    		}
    		ins2 := &instruction{
    			as:  AXORI, // [bit] xor 1 = not [bit]
    			rd:  ins.rd,
    			rs1: ins.rd,
    			imm: 1,
    		}
    		inss = append(inss, ins2)
    
    	case AFSQRTS, AFSQRTD:
    		// These instructions expect a zero (i.e. float register 0)
    		// to be the second input operand.
    		ins.rs1 = uint32(p.From.Reg)
    		ins.rs2 = REG_F0
    
    	case AFMADDS, AFMSUBS, AFNMADDS, AFNMSUBS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/reflect/type.go

    // multiple fields named x (embedded from different packages).
    // FieldByName may return one of the fields named x or may report that there are none.
    // See https://golang.org/issue/4876 for more details.
    
    /*
     * These data structures are known to the compiler (../cmd/compile/internal/reflectdata/reflect.go).
     * A few are known to ../runtime/type.go to convey to debuggers.
     * They are also known to ../runtime/type.go.
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top