Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 300 for structure (0.22 sec)

  1. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # o sqlDirectory: (NotRequired - Default generateOutputDirectory & resourceOutputDirectory)
        #  The directory of SQL file for outsideSql.
        #  Basically you don't need this if your directory structure is same as default.
        #  It's also for DBFlute library project when you use ApplicationOutsideSql.
        #
        #; sqlDirectory = ../src/main/resources
        # - - - - - - - - - -/
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  2. internal/config/notify/config.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package notify
    
    import (
    	"github.com/minio/minio/internal/event/target"
    )
    
    // Config - notification target configuration structure, holds
    // information about various notification targets.
    type Config struct {
    	AMQP          map[string]target.AMQPArgs          `json:"amqp"`
    	Elasticsearch map[string]target.ElasticsearchArgs `json:"elasticsearch"`
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 2.8K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            In the rare cases where this is infeasible, we will also accept a detailed set of instructions.
            You can also use [Gradle Project Replicator](https://github.com/android/project-replicator) to reproduce the structure of your project.
        validations:
          required: true
      - type: input
        id: gradle-version
        attributes:
          label: Gradle version
          description: What version of Gradle are you running?
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/NOTES.txt

    -- multiple versions of the ingress can be used, to minimize upgrade risks
    
    - the new chart uses the default namespace service account, and doesn't require
    additional RBAC permissions.
    
    - simplified label and chart structure.
    - ability to run a pilot dedicated for the gateway, isolated from the main pilot. This is more robust, safer on upgrades
    and allows a bit more flexibility.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 15 21:29:06 GMT 2020
    - 2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/tfe_context_internal.h

    // interface cannot destruct the underlying context object. Instead, call
    // TFE_DeleteContext who calls Release() on the context pointer and deletes
    // the TFE_Context structure.
    typedef struct TFE_Context TFE_Context;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::ImmediateExecutionContext, TFE_Context);
    
    }  // namespace tensorflow
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Jun 17 19:39:13 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/session/Smb2LogoffResponse.java

            int structureSize = SMBUtil.readInt2(buffer, bufferIndex);
            if ( structureSize != 4 ) {
                throw new SMBProtocolDecodingException("Structure size is not 4");
            }
            return 4;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

            In the rare cases where this is infeasible, we will also accept a detailed set of instructions.
            You can also use [Gradle Project Replicator](https://github.com/android/project-replicator) to reproduce the structure of your project.
        validations:
          required: true
      - type: input
        id: gradle-version
        attributes:
          label: Gradle version
          description: What version of Gradle are you running?
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  8. internal/logger/message/audit/entry.go

    	"time"
    
    	"github.com/minio/pkg/v2/logger/message/audit"
    
    	"github.com/minio/minio/internal/handlers"
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    // Version - represents the current version of audit log structure.
    const Version = "1"
    
    // NewEntry - constructs an audit entry object with some fields filled
    func NewEntry(deploymentID string) audit.Entry {
    	return audit.Entry{
    		Version:      Version,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  9. internal/once/init.go

    package once
    
    import (
    	"context"
    	"sync"
    	"sync/atomic"
    )
    
    // Inspired from Golang sync.Once but it is only marked
    // initialized when the provided function returns nil.
    
    // Init represents the structure.
    type Init struct {
    	done uint32
    	m    sync.Mutex
    }
    
    // Do is similar to sync.Once.Do - makes one successful
    // call to the function. ie, it invokes the function
    // if it is not successful yet.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue May 09 04:20:31 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_macros_internal.h

          return tensorflow::Status(absl::StatusCode::kFailedPrecondition,    \
                                    "Expected initialized `" #STRUCT_NAME     \
                                    "` structure with `struct_size` field "   \
                                    "set to " #SIZE_VALUE_NAME                \
                                    ". Found `struct_size` = 0.");            \
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Mar 13 17:40:56 GMT 2023
    - 2.5K bytes
    - Viewed (0)
Back to top