Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 510 for necessarily (0.2 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller.go

    		c.onNetworkChange()
    	}
    	return nil
    }
    
    // isControllerForProxy should be used for proxies assumed to be in the kube cluster for this controller. Workload Entries
    // may not necessarily pass this check, but we still want to allow kube services to select workload instances.
    func (c *Controller) isControllerForProxy(proxy *model.Proxy) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/edit.go

    		// be the same as it was before. Save the original rs, since we have
    		// probably already loaded its requirement graph.
    		return orig, false, nil
    	}
    
    	// A module that is not even in the build list necessarily cannot provide
    	// any imported packages. Mark as direct only the direct modules that are
    	// still in the build list. (We assume that any module path that provided a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/runtime/symtab.go

    // of PC values. If it has already returned all call frames, Next
    // returns a zero [Frame].
    //
    // The more result indicates whether the next call to Next will return
    // a valid [Frame]. It does not necessarily indicate whether this call
    // returned one.
    //
    // See the [Frames] example for idiomatic usage.
    func (ci *Frames) Next() (frame Frame, more bool) {
    	for len(ci.frames) < 2 {
    		// Find the next frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. src/internal/fuzz/fuzz.go

    	entry CorpusEntry
    
    	// crasherMsg is an error message from a crash. It's "" if no crash was found.
    	// If set, the worker will attempt to find a smaller input that also produces
    	// an error, though not necessarily the same error.
    	crasherMsg string
    
    	// limit is the maximum number of calls to the fuzz function the worker may
    	// make. The worker may make fewer calls, for example, if it can't reproduce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    	// service has multiple ports, the name field is mandatory
    	Name string `json:"name,omitempty"`
    
    	// Port number where the service can be reached. Does not necessarily
    	// map to the corresponding port numbers for the instances behind the
    	// service.
    	Port int `json:"port"`
    
    	// Protocol to be used for the port.
    	Protocol protocol.Instance `json:"protocol,omitempty"`
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Before lowering, LECalls receive their fixed inputs (first), memory (last),
    	// and a variable number of input values in the middle.
    	// They produce a variable number of result values.
    	// These values are not necessarily "SSA-able"; they can be too large,
    	// but in that case inputs are loaded immediately before with OpDereference,
    	// and outputs are stored immediately with OpStore.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    				if v.Op == ssa.OpWBend {
    					break
    				}
    				lv.unsafePoints.Set(int32(v.ID))
    			}
    		}
    	}
    }
    
    // Returns true for instructions that must have a stack map.
    //
    // This does not necessarily mean the instruction is a safe-point. In
    // particular, call Values can have a stack map in case the callee
    // grows the stack, but not themselves be a safe-point.
    func (lv *liveness) hasStackMap(v *ssa.Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    === Excluding transitive dependencies
    
    Maven builds use exclusions to keep unwanted dependencies -- or unwanted _versions_ of dependencies -- out of the dependency graph.
    You can do the same thing with Gradle, but that's not necessarily the _right_ thing to do.
    Gradle provides other options that may be more appropriate for a given situation, so you really need to understand _why_ an exclusion is in place to migrate it properly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    // set within each bitmap's chunk.
    //
    // The initialization of the pageAlloc preserves the invariant that if a
    // scavenged bit is set the alloc bit is necessarily unset, so some
    // of the bits described by scav may be cleared in the final bitmap if
    // ranges in chunks overlap with them.
    //
    // scav is optional, and if nil, the scavenged bitmap will be cleared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. docs/pt/docs/alternatives.md

    Dada a simplicidade do Flask, parecia uma ótima opção para construção de APIs. A próxima coisa a procurar era um "Django REST Framework" para Flask.
    
    !!! check "**FastAPI** inspirado para"
        Ser um microframework. Fazer ele fácil para misturar e combinar com ferramentas e partes necessárias.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top