Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for necessarily (0.41 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    func truncate64Fto32F(f float64) float32 {
    	if !isExactFloat32(f) {
    		panic("truncate64Fto32F: truncation is not exact")
    	}
    	if !math.IsNaN(f) {
    		return float32(f)
    	}
    	// NaN bit patterns aren't necessarily preserved across conversion
    	// instructions so we need to do the conversion manually.
    	b := math.Float64bits(f)
    	m := b & ((1 << 52) - 1) // mantissa (a.k.a. significand)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	markChangedVars := func(slots, merged abt.T) {
    		if !forLocationLists {
    			return
    		}
    		// Fill changedVars with those that differ between the previous
    		// block (in the emit order, not necessarily a flow predecessor)
    		// and the start state for this block.
    		for it := slots.Iterator(); !it.Done(); {
    			k, v := it.Next()
    			m := merged.Find(k)
    			if m == nil || v.(*liveSlot).VarLoc != m.(*liveSlot).VarLoc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Slicemask <t> x) => (SRADconst (NEG <t> x) [63])
    (ANDconst [1] z:(SRADconst [63] x)) && z.Uses == 1  => (SRDconst [63] x)
    
    // Note that MOV??reg returns a 64-bit int, x is not necessarily that wide
    // This may interact with other patterns in the future. (Compare with arm64)
    (MOV(B|H|W)Zreg x:(MOVBZload _ _)) => x
    (MOV(B|H|W)Zreg x:(MOVBZloadidx _ _ _)) => x
    (MOV(H|W)Zreg x:(MOVHZload _ _)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    		return errGoModDirty
    	}
    
    	if !dirty && cfg.CmdName != "mod tidy" {
    		// The go.mod file has the same semantic content that it had before
    		// (but not necessarily the same exact bytes).
    		// Don't write go.mod, but write go.sum in case we added or trimmed sums.
    		// 'go mod init' shouldn't write go.sum, since it will be incomplete.
    		if cfg.CmdName != "mod init" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	}
    
    	// return errors if any during deletion
    	return reduceWriteQuorumErrs(ctx, g.Wait(), objectOpIgnoredErrs, writeQuorum)
    }
    
    // DeleteObject - deletes an object, this call doesn't necessary reply
    // any error as it is not necessary for the handler to reply back a
    // response to the client request.
    func (er erasureObjects) DeleteObject(ctx context.Context, bucket, object string, opts ObjectOptions) (objInfo ObjectInfo, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    				}
    			}
    
    			if len(kubeletFlags.KubeletConfigFile) > 0 || len(kubeletFlags.KubeletDropinConfigDirectory) > 0 {
    				// We must enforce flag precedence by re-parsing the command line into the new object.
    				// This is necessary to preserve backwards-compatibility across binary upgrades.
    				// See issue #56171 for more details.
    				if err := kubeletConfigFlagPrecedence(kubeletConfig, args); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	}
    
    	if args.init != nil {
    		args.init()
    	}
    
    	// initialize the server and obtain the credentials and root.
    	// credentials are necessary to sign the HTTP request.
    	if err = newTestConfig(globalMinioDefaultRegion, objLayer); err != nil {
    		args.t.Fatalf("Unable to initialize server config. %s", err)
    	}
    
    	credentials := globalActiveCred
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. cmd/erasure-healing_test.go

    	obj, fsDirs, err := prepareErasure16(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer obj.Shutdown(context.Background())
    
    	// initialize the server and obtain the credentials and root.
    	// credentials are necessary to sign the HTTP request.
    	if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    		t.Fatalf("Unable to initialize server config. %s", err)
    	}
    
    	defer removeRoots(fsDirs)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    #   - Creates the "management" interface associated with an initial HNS network.
    #   - Creates the HNS network $env:KUBE_NETWORK for pod networking.
    #   - Creates an HNS endpoint for pod networking.
    #   - Adds necessary routes on the management interface.
    #   - Verifies that the GCE metadata server connection remains intact.
    #
    # Prerequisites:
    #   $env:POD_CIDR is set (by Set-PodCidr).
    #   Download-HelperScripts() has been called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // case we may not have pod and container spec when killing a container, e.g. pod is deleted during
    // kubelet restart.
    // To solve this problem, we've already written necessary information into container labels. Here we
    // just need to retrieve them from container labels and restore the specs.
    // TODO(random-liu): Add a node e2e test to test this behaviour.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top