Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for notice (0.17 sec)

  1. internal/logger/logonce.go

    		shouldLog = false
    	}
    	l.Unlock()
    
    	if shouldLog {
    		logIf(ctx, subsystem, err, errKind...)
    	}
    }
    
    // Cleanup the map every one hour so that the log message is printed again for the user to notice.
    func (l *logOnceType) cleanupRoutine() {
    	for {
    		time.Sleep(time.Hour)
    
    		l.Lock()
    		l.IDMap = make(map[string]onceErr)
    		l.Unlock()
    	}
    }
    
    // Returns logOnceType
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. cmd/erasure-metadata-utils_test.go

    	disks := z.serverPools[0].GetDisks(0)()
    	distribution := []int{16, 14, 12, 10, 8, 6, 4, 2, 1, 3, 5, 7, 9, 11, 13, 15}
    	shuffledDisks := shuffleDisks(disks, distribution)
    	// From the "distribution" above you can notice that:
    	// 1st data block is in the 9th disk (i.e distribution index 8)
    	// 2nd data block is in the 8th disk (i.e distribution index 7) and so on.
    	if shuffledDisks[0] != disks[8] ||
    		shuffledDisks[1] != disks[7] ||
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/api/main_test.go

    		// so the method set can be extended. Instead of recording
    		// the full set of names (below), record only that there were
    		// unexported methods. (If the interface shrinks, we will notice
    		// because a method signature emitted during the last loop
    		// will disappear.)
    		w.emitf("unexported methods")
    	}
    
    	pop()
    
    	if !complete {
    		return
    	}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  4. internal/ioutil/read_file_noatime_notsupported.go

    Harshavardhana <******@****.***> 1629336922 -0700
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Aug 19 01:35:22 GMT 2021
    - 893 bytes
    - Viewed (0)
  5. internal/event/target/amqp.go

    	EnvAMQPEnable            = "MINIO_NOTIFY_AMQP_ENABLE"
    	EnvAMQPURL               = "MINIO_NOTIFY_AMQP_URL"
    	EnvAMQPExchange          = "MINIO_NOTIFY_AMQP_EXCHANGE"
    	EnvAMQPRoutingKey        = "MINIO_NOTIFY_AMQP_ROUTING_KEY"
    	EnvAMQPExchangeType      = "MINIO_NOTIFY_AMQP_EXCHANGE_TYPE"
    	EnvAMQPDeliveryMode      = "MINIO_NOTIFY_AMQP_DELIVERY_MODE"
    	EnvAMQPMandatory         = "MINIO_NOTIFY_AMQP_MANDATORY"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 10K bytes
    - Viewed (0)
  6. internal/event/target/mqtt.go

    	EnvMQTTEnable            = "MINIO_NOTIFY_MQTT_ENABLE"
    	EnvMQTTBroker            = "MINIO_NOTIFY_MQTT_BROKER"
    	EnvMQTTTopic             = "MINIO_NOTIFY_MQTT_TOPIC"
    	EnvMQTTQoS               = "MINIO_NOTIFY_MQTT_QOS"
    	EnvMQTTUsername          = "MINIO_NOTIFY_MQTT_USERNAME"
    	EnvMQTTPassword          = "MINIO_NOTIFY_MQTT_PASSWORD"
    	EnvMQTTReconnectInterval = "MINIO_NOTIFY_MQTT_RECONNECT_INTERVAL"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  7. internal/event/target/postgresql.go

    	EnvPostgresEnable             = "MINIO_NOTIFY_POSTGRES_ENABLE"
    	EnvPostgresFormat             = "MINIO_NOTIFY_POSTGRES_FORMAT"
    	EnvPostgresConnectionString   = "MINIO_NOTIFY_POSTGRES_CONNECTION_STRING"
    	EnvPostgresTable              = "MINIO_NOTIFY_POSTGRES_TABLE"
    	EnvPostgresHost               = "MINIO_NOTIFY_POSTGRES_HOST"
    	EnvPostgresPort               = "MINIO_NOTIFY_POSTGRES_PORT"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 12.2K bytes
    - Viewed (0)
  8. cmd/config-current.go

    		config.NotifyAMQPSubSys:     notify.HelpAMQP,
    		config.NotifyKafkaSubSys:    notify.HelpKafka,
    		config.NotifyMQTTSubSys:     notify.HelpMQTT,
    		config.NotifyNATSSubSys:     notify.HelpNATS,
    		config.NotifyNSQSubSys:      notify.HelpNSQ,
    		config.NotifyMySQLSubSys:    notify.HelpMySQL,
    		config.NotifyPostgresSubSys: notify.HelpPostgres,
    		config.NotifyRedisSubSys:    notify.HelpRedis,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 30.9K bytes
    - Viewed (0)
  9. internal/event/target/mysql.go

    	EnvMySQLEnable             = "MINIO_NOTIFY_MYSQL_ENABLE"
    	EnvMySQLFormat             = "MINIO_NOTIFY_MYSQL_FORMAT"
    	EnvMySQLDSNString          = "MINIO_NOTIFY_MYSQL_DSN_STRING"
    	EnvMySQLTable              = "MINIO_NOTIFY_MYSQL_TABLE"
    	EnvMySQLHost               = "MINIO_NOTIFY_MYSQL_HOST"
    	EnvMySQLPort               = "MINIO_NOTIFY_MYSQL_PORT"
    	EnvMySQLUsername           = "MINIO_NOTIFY_MYSQL_USERNAME"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 11.5K bytes
    - Viewed (0)
  10. cmd/batch-expire_test.go

              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object including delete markers.
    
      notify:
        endpoint: https://notify.endpoint # notification endpoint to receive job completion status
        token: Bearer xxxxx # optional authentication token for the notification endpoint
      
      retry:
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 3K bytes
    - Viewed (0)
Back to top