Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for Koop (0.29 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"strings"
    )
    
    var (
    	plan9privates *obj.LSym
    )
    
    // Instruction layout.
    
    // Loop alignment constants:
    // want to align loop entry to loopAlign-byte boundary,
    // and willing to insert at most maxLoopPad bytes of NOP to do so.
    // We define a loop entry as the target of a backward jump.
    //
    // gcc uses maxLoopPad = 10 for its 'generic x86-64' config,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    			}
    		case "m":
    			z.Metrics, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Metrics")
    				return
    			}
    		case "np":
    			z.NoOp, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "NoOp")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	Purge SRBucketDeleteOp = "Purge"
    	// NoOp no action needed
    	NoOp SRBucketDeleteOp = "NoOp"
    )
    
    // Empty returns true if this Op is not set
    func (s SRBucketDeleteOp) Empty() bool {
    	return string(s) == "" || string(s) == string(NoOp)
    }
    
    func getSRBucketDeleteOp(isSiteReplicated bool) SRBucketDeleteOp {
    	if !isSiteReplicated {
    		return NoOp
    	}
    	return MarkDelete
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		// scheduler state, so we didn't gcstopm in findRunnable, but
    		// also don't want to allow new goroutines to run.
    		//
    		// Deadlock here rather than in the findRunnable loop so if
    		// findRunnable is stuck in a loop we don't perturb that
    		// either.
    		lock(&deadlock)
    		lock(&deadlock)
    	}
    
    	// This thread is going to run a goroutine and is not spinning anymore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	if outer != 0 {
    		off += ldr.SymValue(s) - ldr.SymValue(outer)
    		s = outer
    	}
    	return s, off
    }
    
    // relocsym resolve relocations in "s", updating the symbol's content
    // in "P".
    // The main loop walks through the list of relocations attached to "s"
    // and resolves them where applicable. Relocations are often
    // architecture-specific, requiring calls into the 'archreloc' and/or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

      TF_ImportGraphDefResults* results =
          TF_GraphImportGraphDefWithResults(graph, graph_def, options, status);
      TF_DeleteImportGraphDefResults(results);
    }
    
    // While loop functions -------------------------------------------------------
    
    namespace {
    
    #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    	client := fake.NewSimpleClientset(set)
    	om, _, ssc := setupController(client)
    	om.SetUpdateStatefulPodError(apierrors.NewInternalError(errors.New("API server failed")), 0)
    
    	// have to have 1 successful loop first
    	if err := scaleUpStatefulSetControl(set, ssc, om, invariants); err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	var err error
    	set, err = om.setsLister.StatefulSets(set.Namespace).Get(set.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    				"CN=leaf -> CN=inter c -> CN=inter b -> CN=inter a -> CN=root",
    			},
    		},
    		{
    			// Build the following graph, which contains a cross-signature loop
    			// (A and C cross sign each other). Paths that include the A -> C -> A
    			// (and vice versa) loop should be ignored, resulting in the paths:
    			//   * Trust Anchor -> A -> B -> EE
    			//   * Trust Anchor -> C -> B -> EE
    			//   * Trust Anchor -> A -> C -> B -> EE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    				}
    			}
    
    			{
    				var actualEvents []string
    				// drain sent events
    			loop:
    				for {
    					select {
    					case event := <-ctx.eventRecorder.Events:
    						actualEvents = append(actualEvents, event)
    					default:
    						break loop
    					}
    				}
    				if !reflect.DeepEqual(actualEvents, s.events) {
    					ctx.t.Logf("expected:\n%s", strings.Join(s.events, "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top