Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for someFile (2.52 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Similarly, Gradle has syntactic sugar that allows tasks to be referenced by name without an explicit query method. This can also cause the task to be immediately created:
    +
    [source,groovy]
    ----
    tasks.register("someTask")
    
    // Sometime later, an eager task is configured like
    task anEagerTask {
        // The following will cause "someTask" to be looked up and immediately created
        dependsOn someTask
    }
    ----
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    		return nil, fmt.Errorf("deployment %s/%s has invalid label selector: %v", d.Namespace, d.Name, err)
    	}
    	// If any adoptions are attempted, we should first recheck for deletion with
    	// an uncached quorum read sometime after listing ReplicaSets (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update.go

    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion with
    	// an uncached quorum read sometime after listing Pods (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. src/path/filepath/path_test.go

    			continue
    		}
    
    		abspath, err := filepath.Abs(path)
    		if err != nil {
    			t.Errorf("Abs(%q) error: %v", path, err)
    			continue
    		}
    		absinfo, err := os.Stat(abspath)
    		if err != nil || !os.SameFile(absinfo, info) {
    			t.Errorf("Abs(%q)=%q, not the same file", path, abspath)
    		}
    		if !filepath.IsAbs(abspath) {
    			t.Errorf("Abs(%q)=%q, not an absolute path", path, abspath)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set.go

    	// If any adoptions are attempted, we should first recheck for deletion with
    	// an uncached quorum read sometime after listing Pods (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    	pods, err := dsc.podLister.Pods(ds.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion with
    	// an uncached quorum read sometime after listing Pods (see #42639).
    	dsNotDeleted := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

        spec:
          containers:
          {{- range $index, $container := .Spec.Containers }}
          - name: {{ $container.Name }}
            env:
            - name: SOME_ENV
              value: "true"
            - name: SOME_FILE
              value: /var/lib/data/foo.json
            volumeMounts:
            - mountPath: /var/lib/data/foo.json
              subPath: foo.json
              name: some-injected-file
          {{- end}}
          volumes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  8. src/net/http/fs_test.go

    		f, err := d.Open(name)
    		if err != nil {
    			t.Fatalf("open of %s: %v", name, err)
    		}
    		defer f.Close()
    		gfi, err := f.Stat()
    		if err != nil {
    			t.Fatalf("stat of %s: %v", name, err)
    		}
    		if !os.SameFile(gfi, wfi) {
    			t.Errorf("%s got different file", name)
    		}
    	}
    	test(Dir("/etc/"), "/hosts")
    	test(Dir("/etc/"), "hosts")
    	test(Dir("/etc/"), "../../../../hosts")
    	test(Dir("/etc"), "/hosts")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    var robotsTxtHandler = HandlerFunc(func(w ResponseWriter, r *Request) {
    	w.Header().Set("Last-Modified", "sometime")
    	fmt.Fprintf(w, "User-agent: go\nDisallow: /something/")
    })
    
    // pedanticReadAll works like io.ReadAll but additionally
    // verifies that r obeys the documented io.Reader contract.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    			}
    		}
    
    		// Select the heap mask to return. We may not have a type mask.
    		mask = maskFromHeap
    
    		// Make sure we keep ep alive. We may have stopped referencing
    		// ep's data pointer sometime before this point and it's possible
    		// for that memory to get freed.
    		KeepAlive(ep)
    		return
    	}
    
    	// stack
    	if gp := getg(); gp.m.curg.stack.lo <= uintptr(p) && uintptr(p) < gp.m.curg.stack.hi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top