Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,366 for easier (0.43 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

                String rootIndicator = settingsDir.toPath().getRoot().toString().replaceAll("[\\\\:\\/]*", "");
                // using "-" to separate the parts of the root project name to allow easier usage in the CLI, just in case.
                return "generated-" + rootIndicator  + (rootIndicator.isEmpty() ? "" : "-") +
                    sha512().hashString(now().toString()).toString().substring(0, 6);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

                                // publish variant files as "classified". This can be arbitrary in practice, this
                                // just makes it easier for publishing specs
                                new FileSpec("${module.module}-${module.version}-$it.name.${it.ext}")
                            } else {
                                new FileSpec(it.name, it.url, it.publishUrl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    		}
    		// If the absolute address is the start of a symbol, use the name.
    		// Otherwise use the raw address, so that things like relative
    		// jumps show up as JMP 0x123 instead of JMP f+10(SB).
    		// It is usually easier to search for 0x123 than to do the mental
    		// arithmetic to find f+10.
    		addr := pc + uint64(inst.Len) + uint64(a)
    		if s, base := symname(addr); s != "" && addr == base {
    			return fmt.Sprintf("%s(SB)", s)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/testing/testing.go

    			v.Spec.ClaimRef.ResourceVersion = ""
    		}
    		gotMap[v.Name] = v
    	}
    	if !reflect.DeepEqual(expectedMap, gotMap) {
    		// Print ugly but useful diff of expected and received objects for
    		// easier debugging.
    		return fmt.Errorf("Volume check failed [A-expected, B-got]: %s", cmp.Diff(expectedMap, gotMap))
    	}
    	return nil
    }
    
    // CheckClaims compares all expectedClaims with set of claims at the end of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. src/runtime/mgclimit_test.go

    			t.Fatalf("expected fill of %d, got %d cpu-ns", expect, l.Fill())
    		}
    
    		// Test passing time without assists during a GC. Specifically, just enough to drain the bucket to
    		// exactly procs nanoseconds (easier to get to because of rounding).
    		//
    		// The window we need to drain the bucket is 1/(1-2*gcBackgroundUtilization) times the current fill:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. docs/changelogs/upgrading_to_okhttp_4.md

    (double-press shift) or under the _Analyze_ menu.
    
    We’ve included deprecated APIs in OkHttp 4.0 because they make migration easy. We will remove them
    in a future release! If you’re skipping releases, it’ll be much easier if you upgrade to OkHttp 4.0
    as an intermediate step.
    
    #### Vars and Vals
    
    Java doesn’t have language support for properties so developers make do with getters and setters.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    3. [[task_configuration_avoidance_guideline_prefer_small_incremental_change]] **Prefer small incremental changes.** +
    Smaller changes are easier to sanity check.
    If you ever break your build logic, analyzing the changelog since the last successful verification will be easier.
    
    4. [[task_configuration_avoidance_guideline_validate_build_logic]] **Ensure a good plan is established for validating the build logic.** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    1. *Reusable Build Logic*:
    +
    `buildSrc` allows you to organize and centralize your custom build logic, tasks, and plugins in a structured manner.
    The code written in buildSrc can be reused across your project, making it easier to maintain and share common build functionality.
    
    2. *Isolation from the Main Build*:
    +
    Code placed in `buildSrc` is isolated from the other build scripts of your project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm_test.go

    	"os"
    	"path/filepath"
    	"regexp"
    	"testing"
    )
    
    type oclassTest struct {
    	arg  *obj.Addr
    	want int // Expected oclass return value for a given arg
    }
    
    // Filled inside init, because it's easier to do with helper functions.
    var (
    	oclassTestsAMD64 []*oclassTest
    	oclassTests386   []*oclassTest
    )
    
    func init() {
    	// Required for tests that access any of
    	// opindex/ycover/reg/regrex global tables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    	*completedConfig
    }
    
    type CustomResourceDefinitions struct {
    	GenericAPIServer *genericapiserver.GenericAPIServer
    
    	// provided for easier embedding
    	Informers externalinformers.SharedInformerFactory
    }
    
    // Complete fills in any fields not set that are required to have valid data. It's mutating the receiver.
    func (cfg *Config) Complete() CompletedConfig {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top