Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for noppad (0.34 sec)

  1. src/cmd/cgo/gcc.go

    				}
    				names[name] = true
    			}
    		}
    	}
    
    	npad := 0
    	for _, f := range fld {
    		for _, n := range f.Names {
    			if n.Name != prefix {
    				n.Name = strings.TrimPrefix(n.Name, prefix)
    			}
    			if n.Name == "_" {
    				// Use exported name instead.
    				n.Name = "Pad_cgo_" + strconv.Itoa(npad)
    				npad++
    			}
    			n.Name = upper(n.Name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	// Ensure there is enough budget for slow processing since
    	// the entire watch cache is going to be served through the
    	// interval and events won't be popped from the cacheWatcher's
    	// input channel until much later.
    	cacher.dispatchTimeoutBudget.returnUnused(100 * time.Millisecond)
    
    	// We define a custom index validator such that the interval is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "not bound to a pod",
    		},
    		{
    			name:       "forbid create of token bound to nonexistant pod",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(makeTokenRequest("nopod", "someuid"), nil, tokenrequestKind, "ns", "mysa", svcacctResource, "token", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "not found",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    func writeGDBLinkerScript() string {
    	name := "fix_debug_gdb_scripts.ld"
    	path := filepath.Join(*flagTmpdir, name)
    	src := `SECTIONS
    {
      .debug_gdb_scripts BLOCK(__section_alignment__) (NOLOAD) :
      {
        *(.debug_gdb_scripts)
      }
    }
    INSERT AFTER .debug_types;
    `
    	err := os.WriteFile(path, []byte(src), 0666)
    	if err != nil {
    		Errorf(nil, "WriteFile %s failed: %v", name, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	}
    	if len(q.tail) > 0 {
    		return q.tail[0]
    	}
    	return nil
    }
    
    // cleanFrontNotWaiting pops any wantConns that are no longer waiting from the head of the
    // queue, reporting whether any were popped.
    func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
    	for {
    		w := q.peekFront()
    		if w == nil || w.waiting() {
    			return cleaned
    		}
    		q.popFront()
    		cleaned = true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    03D7          ; valid                                  # 3.0  GREEK KAI SYMBOL
    03D8          ; mapped                 ; 03D9          # 3.2  GREEK LETTER ARCHAIC KOPPA
    03D9          ; valid                                  # 3.2  GREEK SMALL LETTER ARCHAIC KOPPA
    03DA          ; mapped                 ; 03DB          # 1.1  GREEK LETTER STIGMA
    03DB          ; valid                                  # 3.0  GREEK SMALL LETTER STIGMA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    			opset(AKMC, r)
    			opset(AKLMD, r)
    			opset(AKIMD, r)
    		case AKMA:
    			opset(AKMCTR, r)
    		}
    	}
    }
    
    const (
    	op_A       uint32 = 0x5A00 // FORMAT_RX1        ADD (32)
    	op_AD      uint32 = 0x6A00 // FORMAT_RX1        ADD NORMALIZED (long HFP)
    	op_ADB     uint32 = 0xED1A // FORMAT_RXE        ADD (long BFP)
    	op_ADBR    uint32 = 0xB31A // FORMAT_RRE        ADD (long BFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	deferBitsAddr *ssa.Value
    	deferBitsTemp *ir.Name
    
    	// line number stack. The current line number is top of stack
    	line []src.XPos
    	// the last line number processed; it may have been popped
    	lastPos src.XPos
    
    	// list of panic calls by function name and line number.
    	// Used to deduplicate panic calls.
    	panics map[funcLine]*ssa.Block
    
    	cgoUnsafeArgs       bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let arguments = (ins
        Arg<TF_ResourceTensor, [{The handle to a stack.}], [TF_StackRead, TF_StackWrite]>:$handle
      );
    
      let results = (outs
        Res<TF_Tensor, [{The tensor that is popped from the top of the stack.}]>:$elem
      );
    
      TF_DerivedResultTypeAttr elem_type = TF_DerivedResultTypeAttr<0>;
    }
    
    def TF_StackPushV2Op : TF_Op<"StackPushV2", []> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top