Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,385 for Sarker (0.14 sec)

  1. pkg/kubelet/prober/worker.go

    		}
    	}
    }
    
    // stop stops the probe worker. The worker handles cleanup and removes itself from its manager.
    // It is safe to call stop multiple times.
    func (w *worker) stop() {
    	select {
    	case w.stopCh <- struct{}{}:
    	default: // Non-blocking.
    	}
    }
    
    // doProbe probes the container once and records the result.
    // Returns whether the worker should continue.
    func (w *worker) doProbe(ctx context.Context) (keepGoing bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. internal/s3select/sql/parser.go

    }
    
    // FuncExpr represents a function call
    type FuncExpr struct {
    	SFunc     *SimpleArgFunc `parser:"  @@"`
    	Count     *CountFunc     `parser:"| @@"`
    	Cast      *CastFunc      `parser:"| @@"`
    	Substring *SubstringFunc `parser:"| @@"`
    	Extract   *ExtractFunc   `parser:"| @@"`
    	Trim      *TrimFunc      `parser:"| @@"`
    	DateAdd   *DateAddFunc   `parser:"| @@"`
    	DateDiff  *DateDiffFunc  `parser:"| @@"`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. docs/bucket/replication/DESIGN.md

    It must be noted that if active-active replication is set up with delete marker replication, there is potential for duplicate delete markers to be created if both source and target concurrently set a Delete Marker or if one/both of the clusters went down at tandem before the replication event was synced.This is an unavoidable side-effect in active-active replication caused by allowing delete markers set on a object version with `REPLICA` status back to source.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/workerApiProject/buildSrc/src/main/resources/META-INF/gradle-plugins/worker-plugin.properties

    implementation-class=com.example.worker.WorkerPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 54 bytes
    - Viewed (0)
  5. src/structs/hostlayout.go

    // containing the struct marked as host layout.
    //
    // By convention, HostLayout should be used as the type of a field
    // named "_", placed at the beginning of the struct type definition.
    type HostLayout struct {
    	_ hostLayout // prevent accidental conversion with plain struct{}
    }
    
    // We use an unexported type within the exported type to give the marker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/plugin-markers.png

    plugin-markers.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/DefaultContextAwareTaskLogger.java

            if (isInfoEnabled(marker)) {
                log(toLogLevel(marker), null, format, arg1, arg2);
            }
        }
    
        @Override
        public void info(Marker marker, String format, Object... argArray) {
            if (isInfoEnabled(marker)) {
                log(toLogLevel(marker), null, format, argArray);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. cmd/signature-v4-parser.go

    Harshavardhana <******@****.***> 1705561397 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/internal/pkgbits/codes.go

    // Decoder to detect desyncs.
    type Code interface {
    	// Marker returns the SyncMarker for the Code's dynamic type.
    	Marker() SyncMarker
    
    	// Value returns the Code's ordinal value.
    	Value() int
    }
    
    // A CodeVal distinguishes among go/constant.Value encodings.
    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    func (c CodeVal) Value() int         { return int(c) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    			},
    		},
    		"auto-generated secret has 'last-used' label, the time period since last-used is larger than CleanUpPeriod, secret has been marked as invalid, time peroid since invalid is larger than CleanUpPeriod": {
    			ExistingSecret:           configuredServiceAccountTokenSecret("2022-12-27", "2023-01-05", "2022-12-27", "default", "12345", ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top