Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for dirty (0.05 sec)

  1. tools/bug-report/pkg/testdata/output/range_not_equals.log

    2020-06-29T23:37:27.285053Z	info	FLAG: --disableInternalTelemetry="false"
    2020-06-29T23:37:27.285550Z	info	Version 1.6.3-1e8c62baad31c829c5993235c429248f36a85478-dirty-Modified
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 242 bytes
    - Viewed (0)
  2. src/path/filepath/example_unix_test.go

    	fmt.Println(filepath.Dir("/dirty//path///"))
    	fmt.Println(filepath.Dir("dev.txt"))
    	fmt.Println(filepath.Dir("../todo.txt"))
    	fmt.Println(filepath.Dir(".."))
    	fmt.Println(filepath.Dir("."))
    	fmt.Println(filepath.Dir("/"))
    	fmt.Println(filepath.Dir(""))
    
    	// Output:
    	// On Unix:
    	// /foo/bar
    	// /foo/bar
    	// /foo/bar/baz
    	// /dirty/path
    	// .
    	// ..
    	// .
    	// .
    	// /
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/fetch.go

    	// just return without opening go.sum.
    	dirty := false
    Outer:
    	for m, hs := range goSum.m {
    		for _, h := range hs {
    			st := goSum.status[modSum{m, h}]
    			if st.dirty && (!st.used || keep[m]) {
    				dirty = true
    				break Outer
    			}
    		}
    	}
    	if !dirty {
    		return nil
    	}
    	if readonly {
    		return ErrGoSumDirty
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/cover.bash

    #!/usr/bin/env bash
    # Copyright 2020 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.
    
    # A quick and dirty way to obtain code coverage from rulegen's main func. For
    # example:
    #
    #     ./cover.bash && go tool cover -html=cover.out
    #
    # This script is needed to set up a temporary test file, so that we don't break
    # regular 'go run .' usage to run the generator.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 664 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

        protected ProgressEvents() {
        }
    
        void clear() {
            events.clear()
            operations.clear()
            dirty = false
        }
    
        /**
         * Asserts that the events form zero or more well-formed trees of operations.
         */
        void assertHasZeroOrMoreTrees() {
            if (!dirty) {
                return;
            }
    
            Set<OperationDescriptor> seen = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	if !s.UpstreamHasSynced() {
    		return
    	} else if !s.policiesDirty.Swap(false) {
    		return
    	}
    
    	// It is ok the cache gets marked dirty again between us clearing the
    	// flag and us calculating the policies. The dirty flag would be marked again,
    	// and we'd have a no-op after comparing resource versions on the next sync.
    	klog.Infof("refreshing policies")
    	policies, err := s.calculatePolicyData()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockState.java

        /**
         * Called after an update is complete, returns a new clean state based on this state.
         */
        LockState completeUpdate();
    
        /**
         * Called before an update is complete, returns a new dirty state based on this state.
         */
        LockState beforeUpdate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_controller.go

    	// quota is dirty if any part of spec hard limits differs from the status hard limits
    	statusLimitsDirty := !apiequality.Semantic.DeepEqual(resourceQuota.Spec.Hard, resourceQuota.Status.Hard)
    
    	// dirty tracks if the usage status differs from the previous sync,
    	// if so, we send a new usage with latest status
    	// if this is our first sync, it will be dirty by default, since we need track usage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolver.java

         * between any two nodes, if multiple exists. Uses scope relationships, defined
         * in <code>ArtifactScopeEnum</code>
         *
         * @param graph the "dirty" graph to be simplified via conflict resolution
         * @param scope scope for which the graph should be resolved
         *
         * @return resulting "clean" graph for the specified scope
         *
         * @since 3.0
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/go/types/infer.go

    	killCycles(tparams, inferred)
    
    	// dirty tracks the indices of all types that may still contain type parameters.
    	// We know that nil type entries and entries corresponding to provided (non-nil)
    	// type arguments are clean, so exclude them from the start.
    	var dirty []int
    	for i, typ := range inferred {
    		if typ != nil && (i >= len(targs) || targs[i] == nil) {
    			dirty = append(dirty, i)
    		}
    	}
    
    	for len(dirty) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top