Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for startm (0.28 sec)

  1. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    SweeperPool$Sweeper implements Runnable { private final transient SweeperPool pool; private transient boolean service; private final transient int sweepInterval; public void SweeperPool$Sweeper(SweeperPool, int); public void run(); public synchronized void start(); public synchronized void stop(); private final void debug(String); private void runSweep(); } org/codehaus/plexus/util/SweeperPool.class package org.codehaus.plexus.util; public synchronized class SweeperPool { private static final boolean DEBUG...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CRYPTO_NR_MSGTYPES                          = 0x6
    	CRYPTO_REPORT_MAXSIZE                       = 0x160
    	CS5                                         = 0x0
    	CSIGNAL                                     = 0xff
    	CSTART                                      = 0x11
    	CSTATUS                                     = 0x0
    	CSTOP                                       = 0x13
    	CSUSP                                       = 0x1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "Server functionality is not supported on mobile");
    #else
      status->status = server->server->Start();
    #endif  // defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
    }
    
    void TF_ServerStop(TF_Server* server, TF_Status* status) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    		return err
    	}
    	var state srState
    	if !unlinkSelf {
    		state = srState{
    			Name:                    c.state.Name,
    			Peers:                   updatedPeers,
    			ServiceAccountAccessKey: c.state.ServiceAccountAccessKey,
    		}
    	}
    
    	if err := c.saveToDisk(ctx, state); err != nil {
    		return errSRBackendIssue(fmt.Errorf("unable to save cluster-replication state to drive on %s: %v", ourName, err))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				}
    				if diff := cmp.Diff(wanted, nodeController.zoneStates); diff != "" {
    					t.Errorf("unexpected zone state (-want +got):\n%s", diff)
    				}
    			}
    
    			// initial zone state
    			nodeController.now = func() metav1.Time { return fakeNow }
    			syncAndDiffZoneState(tt.expectedInitialStates)
    
    			// following zone state
    			nodeController.now = func() metav1.Time { return metav1.Time{Time: fakeNow.Add(timeToPass)} }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation_test.go

    		},
    		`spec.podFailurePolicy.rules[0].onPodConditions[0].type: Invalid value: "Invalid Condition Type": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]')`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    		if optab[i].asmout == nil {
    			optab[i].asmout = asmout
    		}
    	}
    
    	for i := 0; i < len(optab); {
    		r := optab[i].as
    		r0 := r & obj.AMask
    		start := i
    		for i < len(optab) && optab[i].as == r {
    			i++
    		}
    		oprange[r0] = optab[start:i]
    
    		switch r {
    		default:
    			if !opsetGen(r) {
    				ctxt.Diag("unknown op in build: %v", r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

                  socket.sendBufferSize = socketBufferSize
                  return socket
                }
              },
            )
            .writeTimeout(Duration.ofMillis(500))
            .build()
        server.start()
        server.enqueue(
          MockResponse.Builder()
            .throttleBody(1, 1, TimeUnit.SECONDS)
            .build(),
        ) // Prevent the server from reading!
        val request =
          Request(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def StripTfAttributesPass : Pass<"tf-strip-tf-attributes", "ModuleOp"> {
      let summary = "Removes TF specific attributes";
      let description = [{
          Removes attributes that are TF specific (start with "tf.") or that
          have a value from the TF dialect. Useful after legalizing TF graphs
          to other dialects, to remove any TF remnants.
      }];
      let constructor = "TF::CreateStripTfAttributesPass()";
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    				assertState(state{
    					graphNodes:             []*node{makeNode(pod1ns1, withOwners(node1)), makeNode(node1)}, // node1 switched to observed, fixed namespace coordinate
    					pendingAttemptToDelete: []*node{makeNode(node1WithNamespace, virtual)},                 // virtual node1 queued for attempted delete
    				}),
    				// handle queued delete of virtual node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top