Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for DL (0.02 sec)

  1. javadoc-stylesheet.css

        list-style:none;
    }
    .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
        font-size:1.1em;
        font-weight:bold;
        margin:10px 0 0 0;
        color:#4E4E4E;
    }
    .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
        margin:10px 0 10px 20px;
    }
    .serializedFormContainer dl.nameValue dt {
        margin-left:1px;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  2. src/log/slog/logger_test.go

    	ctx := context.Background()
    	dl := New(discardHandler{})
    	defer SetDefault(Default()) // restore
    	SetDefault(dl)
    
    	t.Run("Info", func(t *testing.T) {
    		wantAllocs(t, 0, func() { Info("hello") })
    	})
    	t.Run("Error", func(t *testing.T) {
    		wantAllocs(t, 0, func() { Error("hello") })
    	})
    	t.Run("logger.Info", func(t *testing.T) {
    		wantAllocs(t, 0, func() { dl.Info("hello") })
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/base.css

            padding-bottom: 0.5rem;
            background-color: #fff;
        }
    
        .appendix .toc > dl > dt,
        .appendix .toc > dl > dt:last-of-type
        .book .home .toc > dl > dt,
        .book .home .toc > dl > dt:last-of-type
        .chapter .toc > dl > dt,
        .chapter .toc > dl > dt:last-of-type {
            padding: 0.5rem 0;
            margin: 0;
        }
    
        .appendix .toc a,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/strconv/ftoaryu.go

    		}
    		if divisibleByPower5(mu, -q) {
    			du0 = true
    		}
    	}
    	// Express the results (dl, dc, du)*2^e2 as integers.
    	// Extra bits must be removed and rounding hints computed.
    	extra := uint(-e2)
    	extraMask := uint64(1<<extra - 1)
    	// Now compute the floored, integral base 10 mantissas.
    	dl, fracl := dl>>extra, dl&extraMask
    	dc, fracc := dc>>extra, dc&extraMask
    	du, fracu := du>>extra, du&extraMask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  5. Makefile

    hotfix-push: hotfix
    	@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-0.minio.io:~/releases/server/minio/hotfixes/linux-amd64/
    	@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-0.minio.io:~/releases/server/minio/hotfixes/linux-amd64/archive
    	@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-1.minio.io:~/releases/server/minio/hotfixes/linux-amd64/
    	@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-1.minio.io:~/releases/server/minio/hotfixes/linux-amd64/archive
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/net/http/httputil/dump_test.go

    // otherwise defaultDelay from the current time.
    func deadline(t *testing.T, defaultDelay, needed time.Duration) time.Time {
    	if dl, ok := t.Deadline(); ok {
    		if dl = dl.Add(-needed); dl.After(time.Now()) {
    			// Allow an arbitrarily long delay.
    			return dl
    		}
    	}
    
    	// No deadline configured or its closer than needed from now
    	// so just use the default.
    	return time.Now().Add(defaultDelay)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  7. README.md

    | 64-bit Intel/AMD               | <https://dl.min.io/server/minio/release/linux-amd64/minio>   |
    | 64-bit ARM                     | <https://dl.min.io/server/minio/release/linux-arm64/minio>   |
    | 64-bit PowerPC LE (ppc64le)    | <https://dl.min.io/server/minio/release/linux-ppc64le/minio> |
    | IBM Z-Series (S390X)           | <https://dl.min.io/server/minio/release/linux-s390x/minio>   |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/version_test.go

    		label  string
    		valid  bool
    	}
    	cases := []T{
    		// Release area
    		{"v1.7.0", "https://dl.k8s.io/release", "v1.7.0", true},
    		{"v1.8.0-alpha.2.1231+afabd012389d53a", "https://dl.k8s.io/release", "v1.8.0-alpha.2.1231+afabd012389d53a", true},
    		{"release/v1.7.0", "https://dl.k8s.io/release", "v1.7.0", true},
    		{"release/latest-1.7", "https://dl.k8s.io/release", "latest-1.7", true},
    		// CI builds area
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/nn_grad.cc

      // dp/dx = [dp0/dx0   ... dp0/dxn-1  ]
      //         [  ...           ...      ]
      //         [dpm-1/dx0 ... dpm-1/dxn-1]
      // dL/dx = dp/dx * dL/dy
      //
      // Using alternative formula:
      // dL/dx = dL/dy * y - sum(dL/dy * y) * y
      //    = (dL/dy - sum(dL/dy * y)) * y
      auto y = op.output(0);
      auto dyy = Mul(scope, grad_inputs[0], y);
      auto sum = Sum(scope, dyy, /*axis=*/-1, Sum::KeepDims(true));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds a repository which looks in Google's Maven repository for dependencies.
         * <p>
         * The URL used to access this repository is {@literal "https://dl.google.com/dl/android/maven2/"}.
         * <p>
         * Examples:
         * <pre class='autoTested'>
         * repositories {
         *     google()
         * }
         * </pre>
         *
         * @return the added resolver
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top