Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for startm (0.16 sec)

  1. cmd/admin-handlers.go

    		return []madmin.KMS{}
    	}
    
    	stat, err := GlobalKMS.Status(ctx)
    	if err != nil {
    		kmsLogIf(ctx, err, "failed to fetch KMS status information")
    		return []madmin.KMS{}
    	}
    
    	stats := make([]madmin.KMS, 0, len(stat.Endpoints))
    	for endpoint, state := range stat.Endpoints {
    		stats = append(stats, madmin.KMS{
    			Status:   string(state),
    			Endpoint: endpoint,
    		})
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    description. appendValueList <T> Description appendValueList(java.lang.String start, java.lang.String separator, java.lang.String end, T... values) Appends a list of values to the description. appendValueList <T> Description appendValueList(java.lang.String start, java.lang.String separator, java.lang.String end, java.lang.Iterable<T> values) Appends a list of values to the description. appendList Description appendList(java.lang.String start, java.lang.String separator, java.lang.String end, java.lang.Iterable<?...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	ldr := state.ctxt.loader
    	for _, s := range syms {
    		state.datsize = aligner(state, state.datsize, s)
    		ldr.SetSymSect(s, sect)
    		if forceType != sym.Sxxx {
    			state.setSymType(s, forceType)
    		}
    		ldr.SetSymValue(s, int64(uint64(state.datsize)-sect.Vaddr))
    		state.datsize += ldr.SymSize(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js.map

    */\nexport default function removeEventListeners(reference, state) {\n  // Remove resize event listener on window\n  getWindow(reference).removeEventListener('resize', state.updateBound);\n\n  // Remove scroll event listener on scroll parents\n  state.scrollParents.forEach(target => {\n    target.removeEventListener('scroll', state.updateBound);\n  });\n\n  // Reset state\n  state.updateBound = null;\n  state.scrollParents = [];\n  state.scrollElement = null;\n  state.eventsEnabled = false;\n  return...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }  // namespace
    
    void RangeOp::build(OpBuilder &builder, OperationState &result, Value start,
                        Value limit, Value delta) {
      assert(start.getType() == limit.getType());
      assert(start.getType() == delta.getType());
      DenseIntElementsAttr start_val;
      DenseIntElementsAttr limit_val;
      DenseIntElementsAttr delta_val;
      if (matchPattern(start, m_Constant(&start_val)) &&
          matchPattern(limit, m_Constant(&limit_val)) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "started": {
              "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.",
              "type": "boolean"
            },
            "state": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	MaxLifetimeClosed int64         // The total number of connections closed due to SetConnMaxLifetime.
    }
    
    // Stats returns database statistics.
    func (db *DB) Stats() DBStats {
    	wait := db.waitDuration.Load()
    
    	db.mu.Lock()
    	defer db.mu.Unlock()
    
    	stats := DBStats{
    		MaxOpenConnections: db.maxOpen,
    
    		Idle:            len(db.freeConn),
    		OpenConnections: db.numOpen,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Start Crawling */
        public static final String LABELS_wizard_start_crawling_title = "{labels.wizard_start_crawling_title}";
    
        /** The key of the message: Crawler */
        public static final String LABELS_wizard_start_crawler_title = "{labels.wizard_start_crawler_title}";
    
        /** The key of the message: To click "Start Crawling" button, you can start a crawling now. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    			setStartTime: true,
    			jobName:      "job2",
    		},
    	}
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			job := newJobWithName(tc.jobName, 1, 1, 6, batch.NonIndexedCompletion)
    			job.Spec.ActiveDeadlineSeconds = ptr.To[int64](1)
    			if tc.setStartTime {
    				start := metav1.NewTime(fakeClock.Now())
    				job.Status.StartTime = &start
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    i.indexOf(t)===e}).forEach(function(t){be(t,t.childNodes),ke(t)})}ce.resolve=function(t){var e=this;if(e.state===ae){if(t===e)throw new TypeError("Promise settled with itself.");var i=!1;try{var n=t&&t.then;if(null!==t&&I(t)&&$(n))return void n.call(t,function(t){i||e.resolve(t),i=!0},function(t){i||e.reject(t),i=!0})}catch(t){return void(i||e.reject(t))}e.state=0,e.value=t,e.notify()}},ce.reject=function(t){var e=this;if(e.state===ae){if(t===e)throw new TypeError("Promise settled with itself.");e.state=1,e.value=...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
Back to top