Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 151 for netlify (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

     * of the public API. In particular, this class can be changed or deleted without prior notice.
     *
     */
    public class RepositoryUtils {
    
        private static String nullify(String string) {
            return (string == null || string.isEmpty()) ? null : string;
        }
    
        private static org.apache.maven.artifact.Artifact toArtifact(Dependency dependency) {
            if (dependency == null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  2. docs/batch-jobs/README.md

    	  # metadata:
    	  #   - key: "content-type"
    	  #     value: "image/*" # match objects with 'content-type', with all values starting with 'image/'
    
    	notify:
    	  endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    	  token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    	retry:
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Oct 06 06:00:43 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

    import jcifs.internal.NotifyResponse;
    import jcifs.internal.smb1.trans.nt.NtTransNotifyChange;
    import jcifs.internal.smb1.trans.nt.NtTransNotifyChangeResponse;
    import jcifs.internal.smb2.notify.Smb2ChangeNotifyRequest;
    
    
    /**
     * @author mbechler
     *
     */
    class SmbWatchHandleImpl implements SmbWatchHandle {
    
        private static final Logger log = LoggerFactory.getLogger(SmbWatchHandleImpl.class);
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/list.md

    | `minio_notify_current_send_in_progress`        | Number of concurrent async Send calls active to all targets (deprecated, please use 'minio_notify_target_current_send_in_progress' instead) |
    | `minio_notify_events_errors_total`             | Events that were failed to be sent to the targets (deprecated, please use 'minio_notify_target_failed_events' instead)                      |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  5. src/main/java/jcifs/internal/NotifyResponse.java

    import java.util.List;
    
    import jcifs.FileNotifyInformation;
    
    
    /**
     * @author mbechler
     *
     */
    public interface NotifyResponse extends CommonServerMessageBlockResponse {
    
        /**
         * @return notify information
         */
        List<FileNotifyInformation> getNotifyInformation ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbCopyUtil.java

            this.b = buffer;
            this.n = len;
            this.out = d;
            this.ready = false;
            notify();
        }
    
    
        @Override
        public void run () {
            synchronized ( this ) {
                try {
                    for ( ;; ) {
                        notify();
                        this.ready = true;
                        while ( this.ready ) {
                            wait();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  7. cni/cmd/install-cni/main.go

    	"istio.io/istio/pkg/log"
    )
    
    func main() {
    	// Create context that cancels on termination signal
    	ctx, cancel := context.WithCancel(context.Background())
    	sigChan := make(chan os.Signal, 1)
    	signal.Notify(sigChan, os.Interrupt, syscall.SIGTERM)
    	go func(sigChan chan os.Signal, cancel context.CancelFunc) {
    		sig := <-sigChan
    		log.Infof("Exit signal received: %s", sig)
    		cancel()
    	}(sigChan, cancel)
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  8. .github/workflows/slack-notifier.yml

    name: IDE Experience team notifier
    run-name: Notify the IDE Experience team about relevant issues
    on:
      issues:
        types:
          - labeled
    
    jobs:
      send-slack-notification:
        if: ${{ github.event.label.name == 'in:ide' || github.event.label.name == 'in:eclipse-plugin' || github.event.label.name == 'in:idea-plugin' || github.event.label.name == 'in:tooling-api' }}
        runs-on: ubuntu-latest
        steps:
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 04 06:43:15 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    		return errors.New(resp.Status)
    	}
    
    	return nil
    }
    
    // Notify notifies notification endpoint if configured regarding job failure or success.
    func (r BatchJobReplicateV1) Notify(ctx context.Context, ri *batchJobInfo) error {
    	return notifyEndpoint(ctx, ri, r.Flags.Notify.Endpoint, r.Flags.Notify.Token)
    }
    
    // ReplicateFromSource - this is not implemented yet where source is 'remote' and target is local.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java

         * @param fid
         * @param completionFilter
         * @param watchTree
         */
        public NtTransNotifyChange ( Configuration config, int fid, int completionFilter, boolean watchTree ) {
            super(config, NT_TRANSACT_NOTIFY_CHANGE);
            this.fid = fid;
            this.completionFilter = completionFilter;
            this.watchTree = watchTree;
            this.setupCount = 0x04;
            this.totalDataCount = 0;
            this.maxDataCount = 0;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.2K bytes
    - Viewed (0)
Back to top