Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 397 for Signals (0.2 sec)

  1. src/net/rpc/server.go

    			// shut down the connection to signal that the connection is broken.
    			log.Println("rpc: gob error encoding response:", err)
    			c.Close()
    		}
    		return
    	}
    	if err = c.enc.Encode(body); err != nil {
    		if c.encBuf.Flush() == nil {
    			// Was a gob problem encoding the body but the header has been written.
    			// Shut down the connection to signal that the connection is broken.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. cmd/admin-heal-ops.go

    }
    
    // traverseAndHeal - traverses on-disk data and performs healing
    // according to settings. At each "safe" point it also checks if an
    // external quit signal has been received and quits if so. Since the
    // healing traversal may be mutating on-disk data when an external
    // quit signal is received, this routine cannot quit immediately and
    // has to wait until a safe point is reached, such as between scanning
    // two objects.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	// but the return value is mainly for testing. In a real program,
    	// SecurityError should typically print the message and call log.Fatal or os.Exit.
    	SecurityError(msg string)
    }
    
    // ErrWriteConflict signals a write conflict during Client.WriteConfig.
    var ErrWriteConflict = errors.New("write conflict")
    
    // ErrSecurity is returned by [Client] operations that invoke Client.SecurityError.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/context/context.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package context defines the Context type, which carries deadlines,
    // cancellation signals, and other request-scoped values across API boundaries
    // and between processes.
    //
    // Incoming requests to a server should create a [Context], and outgoing
    // calls to servers should accept a Context. The chain of function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

                Process mkfifo = new ProcessBuilder("mkfifo", getAbsolutePath())
                    .redirectErrorStream(true)
                    .start();
                assert mkfifo.waitFor() == 0; // assert the exit value signals success
                return this;
            } catch (IOException | InterruptedException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        private void clearCanonCaches() {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. src/encoding/gob/doc.go

    reserved).
    
    	1f	// This item (a type descriptor) is 31 bytes long.
    	ff 81	// The negative of the id for the type we're defining, -65.
    		// This is one byte (indicated by FF = -1) followed by
    		// ^-65<<1 | 1. The low 1 bit signals to complement the
    		// rest upon receipt.
    
    	// Now we send a type descriptor, which is itself a struct (wireType).
    	// The type of wireType itself is known (it's built in, as is the type of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server.go

    		}
    		if c.vers >= VersionTLS12 {
    			certReq.hasSignatureAlgorithm = true
    			certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
    		}
    
    		// An empty list of certificateAuthorities signals to
    		// the client that it may send any certificate in response
    		// to our request. When we know the CAs we trust, then
    		// we can send them down, so that the client can choose
    		// an appropriate certificate to give to us.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/controller/repairip.go

    		return
    	}
    
    	// First sync goes through all the Services and IPAddresses in the cache,
    	// once synced, it signals the main loop and works using the handlers, since
    	// it's less expensive and more optimal.
    	if err := r.runOnce(); err != nil {
    		runtime.HandleError(err)
    		return
    	}
    	onFirstSuccess()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-rebalance.go

    		go func(idx int) {
    			stopfn := globalRebalanceMetrics.log(rebalanceMetricRebalanceBuckets, idx)
    			err := z.rebalanceBuckets(ctx, idx)
    			stopfn(0, err)
    		}(poolIdx)
    	}
    }
    
    // StopRebalance signals the rebalance goroutine running on this node (if any)
    // to stop, using the context.CancelFunc(s) saved at the time ofStartRebalance.
    func (z *erasureServerPools) StopRebalance() error {
    	z.rebalMu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		if sig2 == 0 {
    			t.Errorf("got %q; expected signal %q", ee, sig1)
    		} else {
    			t.Errorf("got %q; expected signal %q or %q", ee, sig1, sig2)
    		}
    	} else {
    		return true
    	}
    	return false
    }
    
    func TestOsSignal(t *testing.T) {
    	switch GOOS {
    	case "windows":
    		t.Skip("skipping signal test on Windows")
    	}
    	globalSkip(t)
    	testenv.MustHaveGoBuild(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top