Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,366 for easier (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    A lot of the problems Gradle handles are about fixing the mismatch between the expectations of a consumer and a producer.
    
    However, some projects are easier than others:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. src/fmt/format.go

    		prec = f.wid
    		if negative || f.plus || f.space {
    			prec-- // leave room for sign
    		}
    	}
    
    	// Because printing is easier right-to-left: format u into buf, ending at buf[i].
    	// We could make things marginally faster by splitting the 32-bit case out
    	// into a separate block but it's not worth the duplication, so u has 64 bits.
    	i := len(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    = Using Ant from Gradle
    
    Gradle provides integration with Ant.
    
    Gradle integrates with Ant, allowing you to use individual Ant tasks or entire Ant builds in your Gradle builds.
    Using Ant tasks in a Gradle build script is often easier and more powerful than using Ant's XML format.
    Gradle can also be used as a powerful Ant task scripting tool.
    
    Ant can be divided into two layers:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    		}
    		cfg.BuildContext.GOPATH = tmpDir
    	}
    
    	cfg.GOPROXY = "direct"
    	cfg.GOSUMDB = "off"
    	modload.Init()
    
    	// Shard tests by downloading only every nth module when shard flags are set.
    	// This makes it easier to test small groups of modules quickly. We avoid
    	// testing similarly named modules together (the list is sorted by module
    	// path and version).
    	if *shardCount > 1 {
    		r := *shardIndex
    		w := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/internal/trace/mud.go

    // to b is the total duration during which the mutator utilization was
    // in the range [a, b].
    //
    // This distribution is *not* normalized (it is not a probability
    // distribution). This makes it easier to work with as it's being
    // updated.
    //
    // It is represented as the sum of scaled uniform distribution
    // functions and Dirac delta functions (which are treated as
    // degenerate uniform distributions).
    type mud struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/convert_func_to_bfloat16.cc

     public:
      BFloat16TypeConverter() {
        addConversion([](const Type type) -> Type {
          return IsLargeFloatType(type) ? ToBfloat16Type(type) : type;
        });
      }
    };
    
    // This helper function makes legality check easier. Both convert ops in the
    // patterns below are considered legal:
    //  - `BitcastConvertOp` (i32 -> f32) + `ConvertOp` (f32 -> bf16)
    //  - `ConvertOp` (bf16 -> f32) -> `BitcastConvertOp` (f32 -> i32)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                        languageVersion = JavaLanguageVersion.of(8)
                    }
                }
    
                // Even though we're using a JDK8 toolchain, we compile down to Java 6 bytecode.
                // This makes it easier to run these tests locally since most developers have Java 8
                // installed. We still try to run the Gradle build with Java 6/7, but we skip those tests
                // when Java 6/7 are not installed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. src/runtime/histogram.go

    		// Convert nanoseconds to seconds via a division.
    		// These values will all be exactly representable by a float64.
    		b[j+1] = float64(bucketNanos) / 1e9
    	}
    	// Generate the rest of the buckets. It's easier to reason
    	// about if we cut out the 0'th bucket.
    	for i := timeHistMinBucketBits; i < timeHistMaxBucketBits; i++ {
    		for j := 0; j < timeHistNumSubBuckets; j++ {
    			// Set the bucket bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    ====
    
    [[sec:subkeys]]
    === Using OpenPGP subkeys
    
    OpenPGP supports subkeys, which are like the normal keys, except they're bound to a master key pair. One feature of OpenPGP subkeys is that they can be revoked independently of the master keys which makes key management easier. A practical case study of how subkeys can be leveraged in software development can be read on the https://wiki.debian.org/Subkeys[Debian wiki].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. src/text/template/helper.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Helper functions to make constructing templates easier.
    
    package template
    
    import (
    	"fmt"
    	"io/fs"
    	"os"
    	"path"
    	"path/filepath"
    )
    
    // Functions and methods to parse templates.
    
    // Must is a helper that wraps a call to a function returning ([*Template], error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top