Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,776 for deer (0.1 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            when:
            allowFileSystemAccess(false)
            snapshot = read(someFile)
            then:
            assertIsFileSnapshot(snapshot, someFile)
    
            def missingSubfile = someFile.file("subfile/which/is/deep.txt")
            when:
            snapshot = read(missingSubfile)
            then:
            assertIsMissingFileSnapshot(snapshot, missingSubfile)
        }
    
        def "can read a missing file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-unset-port-mtls-strict-in.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 212 bytes
    - Viewed (0)
  3. pkg/config/model_test.go

    	copied.Annotations["policy.istio.io/checkRetries"] = "0"
    	if cfg.Labels["app"] == copied.Labels["app"] ||
    		cfg.Annotations["policy.istio.io/checkRetries"] == copied.Annotations["policy.istio.io/checkRetries"] {
    		t.Fatalf("Did not deep copy labels and annotations")
    	}
    
    	// change the copied gateway to see if the original config is not effected
    	copiedGateway := copied.Spec.(*networking.Gateway)
    	copiedGateway.Selector = map[string]string{"app": "test"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    }
    
    func (s *podStorage) markSourceSet(source string) {
    	s.sourcesSeenLock.Lock()
    	defer s.sourcesSeenLock.Unlock()
    	s.sourcesSeen.Insert(source)
    }
    
    func (s *podStorage) seenSources(sources ...string) bool {
    	s.sourcesSeenLock.RLock()
    	defer s.sourcesSeenLock.RUnlock()
    	return s.sourcesSeen.HasAll(sources...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    	call := p.parseCallExpr("defer")
    	p.expectSemi()
    	if call == nil {
    		return &ast.BadStmt{From: pos, To: pos + 5} // len("defer")
    	}
    
    	return &ast.DeferStmt{Defer: pos, Call: call}
    }
    
    func (p *parser) parseReturnStmt() *ast.ReturnStmt {
    	if p.trace {
    		defer un(trace(p, "ReturnStmt"))
    	}
    
    	pos := p.pos
    	p.expect(token.RETURN)
    	var x []ast.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    		w.(http.Flusher).Flush()
    		<-stopCh
    	}))
    	defer backend.Close()
    	defer close(stopCh)
    
    	backendURL, err := url.Parse(backend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	proxyHandler := NewSingleHostReverseProxy(backendURL)
    	proxyHandler.FlushInterval = time.Microsecond
    
    	frontend := httptest.NewServer(proxyHandler)
    	defer frontend.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	//   type fake struct { ... }
    	//   func (fake) M () {}
    	//
    	// These alternative declarations of T use either the std.Real
    	// type, introduced in go1.22, or a fake type, for the field
    	// F. (The fakery could be arbitrarily deep, involving more
    	// nested fields and methods than are shown here.) Clients
    	// that use the compatibility shim T will compile with any
    	// version of go, whether older or newer than go1.22, but only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. cmd/erasure-sets.go

    	})
    	if err != nil {
    		return nil, nil, err
    	}
    
    	format, err := loadFormatErasure(disk, false)
    	if err != nil {
    		if errors.Is(err, errUnformattedDisk) {
    			info, derr := disk.DiskInfo(context.TODO(), DiskInfoOptions{})
    			if derr != nil && info.RootDisk {
    				disk.Close()
    				return nil, nil, fmt.Errorf("Drive: %s is a root drive", disk)
    			}
    		}
    		disk.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. src/runtime/defer_test.go

    		defer step(t, &steps, 9)
    		step(t, &steps, 8)
    	}()
    	func() {
    		defer step(t, &steps, 13)
    		defer step(t, &steps, 12)
    		func() {
    			defer step(t, &steps, 11)
    			panic(4)
    		}()
    
    		// Code below isn't executed,
    		// but removing it breaks the test case.
    		defer func() {}()
    		defer panic(-1)
    		defer step(t, &steps, -1)
    		defer step(t, &steps, -1)
    		defer func() {}()
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. test/defererrcheck.go

    }
    
    func f2() {
    	for {
    		defer func() { // ERROR "heap-allocated defer"
    			fmt.Println("defer1")
    		}()
    		if glob > 2 {
    			break
    		}
    	}
    	defer func() { // ERROR "stack-allocated defer"
    		fmt.Println("defer2")
    	}()
    }
    
    func f3() {
    	defer func() { // ERROR "stack-allocated defer"
    		fmt.Println("defer2")
    	}()
    	for {
    		defer func() { // ERROR "heap-allocated defer"
    			fmt.Println("defer1")
    		}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 26 16:54:17 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top