Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,121 for below (0.06 sec)

  1. src/runtime/defs_linux_arm.go

    	it_value    timespec
    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type sigeventFields struct {
    	value  uintptr
    	signo  int32
    	notify int32
    	// below here is a union; sigev_notify_thread_id is the only field we use
    	sigev_notify_thread_id int32
    }
    
    type sigevent struct {
    	sigeventFields
    
    	// Pad struct to the max size in the kernel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/reflect/asm_loong64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "funcdata.h"
    
    #define	REGCTXT	R29
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue30862.go

    // Test case for issue 30862.  This test as written will
    // fail for the main 'gc' compiler unless GOEXPERIMENT=fieldtrack
    // is set when building it, whereas gccgo has field tracking
    // enabled by default (hence the build tag below).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 18:43:12 UTC 2021
    - 450 bytes
    - Viewed (0)
  4. manifests/profiles/default.yaml

        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
        egressGateways:
        - name: istio-egressgateway
          enabled: false
    
      # Most default values come from the helm chart's values.yaml
      # Below are the things that differ
      values:
        defaultRevision: ""
        global:
          istioNamespace: istio-system
          configValidation: true
        gateways:
          istio-ingressgateway: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 744 bytes
    - Viewed (0)
  5. test/fixedbugs/bug421.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 1927.
    // gccgo failed to issue the first error below.
    
    package main
    
    func main() {
    	println(int(1) == uint(1))	// ERROR "types"
    	var x int = 1
    	var y uint = 1
    	println(x == y)			// ERROR "types"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 01:52:05 UTC 2012
    - 381 bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/documentMap.dfprop

        # o loadDataReverseMap: (NotRequired - Default map:{})
        #  You can set LoadDataReverse settings.
        #  This property is valid when the property 'recordLimit' is set.
        #  Elements of this map are as below:
        #   o recordLimit: The limit of records to output. Minus means no limit. (NotRequired - Default '')
        #   o isReplaceSchemaDirectUse: Does it output the data to playsql directly? (NotRequired - Default false)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  7. docs/bigdata/README.md

      - [Installing Spark](https://docs.hortonworks.com/HDPDocuments/HDP3/HDP-3.0.1/installing-spark/content/installing_spark.html)
    - Install MinIO Distributed Server using one of the guides below.
      - [Deployment based on Kubernetes](https://min.io/docs/minio/kubernetes/upstream/index.html#quickstart-for-kubernetes)
      - [Deployment based on MinIO Helm Chart](https://github.com/helm/charts/tree/master/stable/minio)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. test-site/LICENSE

    This software is licensed under the Apache 2 license, quoted below.
    
    Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with
    the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
    
    Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 591 bytes
    - Viewed (0)
  9. src/cmd/cover/testdata/html/html.go

    package html
    
    import "fmt"
    
    // This file is tested by html_test.go.
    // The comments below are markers for extracting the annotated source
    // from the HTML output.
    
    // This is a regression test for incorrect sorting of boundaries
    // that coincide, specifically for empty select clauses.
    // START f
    func f() {
    	ch := make(chan int)
    	select {
    	case <-ch:
    	default:
    	}
    }
    
    // END f
    
    // https://golang.org/issue/25767
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 07 22:47:53 UTC 2018
    - 483 bytes
    - Viewed (0)
  10. .github/PULL_REQUEST_TEMPLATE.md

    -->
    Fixes #
    
    #### Special notes for your reviewer:
    
    #### Does this PR introduce a user-facing change?
    <!--
    If no, just write "NONE" in the release-note block below.
    If yes, a release note is required:
    Enter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string "action required".
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top