Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 407 for toint (0.04 sec)

  1. src/image/gif/writer_test.go

    			}
    		}
    	}
    }
    
    func TestEncodeNonZeroMinPoint(t *testing.T) {
    	points := []image.Point{
    		{-8, -9},
    		{-4, -4},
    		{-3, +3},
    		{+0, +0},
    		{+2, +2},
    	}
    	for _, p := range points {
    		src := image.NewPaletted(image.Rectangle{
    			Min: p,
    			Max: p.Add(image.Point{6, 6}),
    		}, palette.Plan9)
    		var buf bytes.Buffer
    		if err := Encode(&buf, src, nil); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tests/transaction_test.go

    	tx := DB.Begin()
    
    	user := *GetUser("transaction-save-point", Config{})
    	tx.Create(&user)
    
    	if err := tx.First(&User{}, "name = ?", user.Name).Error; err != nil {
    		t.Fatalf("Should find saved record")
    	}
    
    	if err := tx.SavePoint("save_point1").Error; err != nil {
    		t.Fatalf("Failed to save point, got error %v", err)
    	}
    
    	user1 := *GetUser("transaction-save-point-1", Config{})
    	tx.Create(&user1)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	KubernetesDir() string
    	// PatchesDir should point to the folder where patches for components are stored
    	PatchesDir() string
    	// RealManifestPath gets the file path for the component in the "real" static pod manifest directory used by the kubelet
    	RealManifestPath(component string) string
    	// RealManifestDir should point to the static pod manifest directory used by the kubelet
    	RealManifestDir() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	BNE  error
    
    	MOVD $-2, R3       // Reset last bit of entry point to zero
    	AND  R0, R3
    	MOVD R3, ret+8(FP) // Return entry point returned by SVC
    	CMP  R0, R3        // Check if last bit of entry point was set
    	BNE  done
    
    	MOVD R15, R2 // Save go stack pointer
    	MOVD $0, R15 // Move SVC args into registers (entry point still in r0 from SVC 08)
    	SVC_DELETE
    	MOVD R2, R15 // Restore go stack pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519.go

    	}
    
    	S, err := edwards25519.NewScalar().SetCanonicalBytes(sig[32:])
    	if err != nil {
    		return false
    	}
    
    	// [S]B = R + [k]A --> [k](-A) + [S]B = R
    	minusA := (&edwards25519.Point{}).Negate(A)
    	R := (&edwards25519.Point{}).VarTimeDoubleScalarBaseMult(k, minusA, S)
    
    	return bytes.Equal(sig[:32], R.Bytes())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

          : custom_op_map_(custom_op_map) {
        // Set this flag to true if the inputs and outputs are in floating point.
        // The quant adaptor ops convert them to fixed point values (i.e. quantize)
        // before feeding them to the model and convert them back to floating point
        // (i.e. dequantize) as the output.
        this->emit_quant_adaptor_ops_ = emit_quant_adaptor_ops;
      }
    
      void runOnOperation() override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    	// and cause an async preemption to fail, but at this point a
    	// sync preemption will succeed (though this is not a matter
    	// of correctness).
    	osPreemptExtEnter(mp)
    
    	mp.incgo = true
    	// We use ncgo as a check during execution tracing for whether there is
    	// any C on the call stack, which there will be after this point. If
    	// there isn't, we can use frame pointer unwinding to collect call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/internal/trace/gc.go

    			// duration, then the windowed MU function is
    			// only defined at a single point, so the MU
    			// distribution is not well-defined.
    			//
    			// 2. If there are no events, then the MU
    			// distribution has no mass.
    			//
    			// Either way, all of the quantiles will have
    			// converged toward the MMU at this point.
    			mu = acc.mmu
    		}
    		out[i] = mu
    	}
    	return out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. README.md

    ```
    
    The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded
    object browser built into MinIO Server. Point a web browser running on the host machine to <http://127.0.0.1:9000> and log in with the
    root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/runtime/mbarrier.go

    // handle the profile logging.
    
    // typedmemmove copies a value of type typ to dst from src.
    // Must be nosplit, see #16026.
    //
    // TODO: Perfect for go:nosplitrec since we can't have a safe point
    // anywhere in the bulk barrier or memmove.
    //
    // typedmemmove should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top