Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for watchable (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            }
        }
    
        private
        fun checkFingerprint(entryDetails: EntryDetails, layout: ConfigurationCacheRepository.Layout): CheckedFingerprint {
            // Register all included build root directories as watchable hierarchies,
            // so we can load the fingerprint for build scripts and other files from included builds
            // without violating file system invariants.
            registerWatchableBuildDirectories(entryDetails.rootDirs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. pkg/log/config.go

    				return err
    			}
    			*logger = newLogger
    			closeFns = append(closeFns, closeFn)
    		}
    	}
    
    	pt := patchTable{
    		write: func(ent zapcore.Entry, fields []zapcore.Field) error {
    			err := baseLogger.Write(ent, fields)
    			if ent.Level == zapcore.FatalLevel {
    				funcs.Load().(patchTable).exitProcess(1)
    			}
    
    			return err
    		},
    		sync:        baseLogger.Sync,
    		exitProcess: os.Exit,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/log/default_test.go

    				o := testOptions()
    				o.JSONEncoding = c.json
    
    				if err := Configure(o); err != nil {
    					t.Errorf("Got err '%v', expecting success", err)
    				}
    
    				pt := funcs.Load().(patchTable)
    				pt.exitProcess = func(_ int) {
    					exitCalled = true
    				}
    				funcs.Store(pt)
    
    				defaultScope.SetOutputLevel(DebugLevel)
    				defaultScope.SetStackTraceLevel(c.stackLevel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/lds_test.go

    				InterceptionMode: model.InterceptionNone,
    				HTTP10:           "1",
    			},
    			IPAddresses:     []string{"10.11.0.1"}, // matches none.yaml s1tcp.none
    			ConfigNamespace: "none",
    		}, nil, watchAll)
    
    		err := adscon.Save(wd + "/none")
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// 7071 (inbound), 2001 (service - also as http proxy), 18010 (fortio)
    		if len(adscon.GetHTTPListeners()) != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    			mustReadFile(t, "tests/testdata/config/static-weighted-se.yaml"),
    	})
    	ads := s.Connect(nil, nil, watchAll)
    	t.Run("Full Push", func(t *testing.T) {
    		s.Discovery.Push(&model.PushRequest{Full: true})
    		if _, err := ads.Wait(time.Second*5, watchAll...); err != nil {
    			t.Fatal(err)
    		}
    	})
    	t.Run("Incremental Push with updated services", func(t *testing.T) {
    		ads.WaitClear()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

      # IPAMConfiguration
      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - ipamconfigs
        verbs:
          - get
          - create
      # Block affinities must also be watchable by confd for route aggregation.
      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - blockaffinities
        verbs:
          - watch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. pkg/filewatcher/worker.go

    }
    
    type fileTracker struct {
    	events chan fsnotify.Event
    	errors chan error
    
    	// Hash sum to indicate if a file has been updated.
    	hash []byte
    }
    
    func newWorker(path string, funcs *patchTable) (*worker, error) {
    	dirWatcher, err := funcs.newWatcher()
    	if err != nil {
    		return nil, err
    	}
    
    	if err = funcs.addWatcherPath(dirWatcher, path); err != nil {
    		_ = dirWatcher.Close()
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters.go

    					}
    				}
    
    				if ipAddr == nil {
    					ipAddr, err = utilnet.ResolveBindAddress(nodeIP)
    				}
    			}
    
    			if ipAddr == nil {
    				// We tried everything we could, but the IP address wasn't fetchable; error out
    				return fmt.Errorf("can't get ip address of node %s. error: %v", node.Name, err)
    			}
    			node.Status.Addresses = []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: ipAddr.String()},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads_test.go

    				{Address: "1.2.3.4", Locality: "region/zone"},
    				{Address: "1.2.3.5", Locality: "notmatch"},
    			}),
    		},
    	})
    	ads := s.Connect(&model.Proxy{Locality: &core.Locality{Region: "region"}}, nil, watchAll)
    
    	assertEndpoints(ads, "1.2.3.4:80", "1.2.3.5:80")
    	t.Logf("endpoints: %+v", xdstest.ExtractEndpoints(ads.GetEndpoints()["outbound|80||foo.com"]))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/regexp/regexp.go

    func (re *Regexp) put(m *machine) {
    	m.re = nil
    	m.p = nil
    	m.inputs.clear()
    	matchPool[re.mpool].Put(m)
    }
    
    // minInputLen walks the regexp to find the minimum length of any matchable input.
    func minInputLen(re *syntax.Regexp) int {
    	switch re.Op {
    	default:
    		return 0
    	case syntax.OpAnyChar, syntax.OpAnyCharNotNL, syntax.OpCharClass:
    		return 1
    	case syntax.OpLiteral:
    		l := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top