Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for notice (0.21 sec)

  1. 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)
  2. .space/CODEOWNERS

    /kotlin-native/backend.native/tests/**.gradle "Kotlin Native"
    /kotlin-native/backend.native/tests/**/*.gradle.kts "Kotlin Native"
    /kotlin-native/tools/**/*.gradle "Kotlin Native"
    /kotlin-native/tools/**/*.gradle.kts "Kotlin Native"
    /kotlin-native/performance/**/*.gradle "Kotlin Native"
    /kotlin-native/performance/**/*.gradle.kts "Kotlin Native"
    /native/native.tests/*.gradle.kts "Kotlin Native"
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Fri Apr 19 07:36:20 GMT 2024
    - 23.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		list = append(list, targetIDStatus)
    		lambdaMap[targetID.Name] = list
    	}
    
    	notify := make([]map[string][]madmin.TargetIDStatus, len(lambdaMap))
    	counter := 0
    	for key, value := range lambdaMap {
    		v := make(map[string][]madmin.TargetIDStatus)
    		v[key] = value
    		notify[counter] = v
    		counter++
    	}
    	return notify
    }
    
    // fetchKMSStatus fetches KMS-related status information.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  4. .cm/platform_labels.cm

      - documentation:
        name: 'documentation'
      - enterprise:
        name: 'enterprise'
      - extensibility:
        name: 'extensibility'
      - ide:
        name: 'ide'
      - jvm:
        name: 'jvm'
      - native:
        name: 'native'
      - software:
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 15:32:31 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
        Note over client,tasks: Can raise exception for dependency, handled after response is sent
        Note over client,operation: Can raise HTTPException and can change the response
        client ->> dep: Start request
        Note over dep: Run code up to yield
        opt raise
            dep -->> handler: Raise HTTPException
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Apr 19 19:30:49 GMT 2024
    - 384.6K bytes
    - Viewed (1)
  6. cmd/server-main.go

    	} else {
    		addrs.Add(globalMinioAddr)
    	}
    	return addrs.ToSlice()
    }
    
    // serverMain handler called for 'minio server' command.
    func serverMain(ctx *cli.Context) {
    	var warnings []string
    
    	signal.Notify(globalOSSignalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGQUIT)
    
    	go handleSignals()
    
    	setDefaultProfilerRates()
    
    	// Initialize globalConsoleSys system
    	bootstrapTrace("newConsoleLogger", func() {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 32.7K bytes
    - Viewed (1)
  7. go.sum

    github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
    github.com/josharian/native v0.0.0-20200817173448-b6b71def0850/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
    github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA=
    github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:35 GMT 2024
    - 110.5K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    			if nerr != nil {
    				continue
    			}
    			index := index
    			// When we are going to return error, attempt to delete success
    			// on some of the drives, if we cannot we do not have to notify
    			// caller this dangling object will be now scheduled to be removed
    			// via active healing.
    			dg.Go(func() error {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:44:59 GMT 2024
    - 76.3K bytes
    - Viewed (2)
  9. cmd/bucket-replication.go

    	var replicationStatus replication.StatusType
    	defer func() {
    		if replicationStatus.Empty() {
    			// replication status is empty means
    			// replication was not attempted for some
    			// reason, notify the state of the object
    			// on disk.
    			replicationStatus = ri.ReplicationStatus
    		}
    		auditLogInternal(ctx, AuditLogOptions{
    			Event:     ri.EventType,
    			APIName:   ReplicateObjectAPI,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 20 09:05:54 GMT 2024
    - 112K bytes
    - Viewed (1)
Back to top