Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,932 for uncommon (0.12 sec)

  1. src/runtime/mprof.go

    		// might be able to change the goroutine count without interacting with
    		// the scheduler. For code like that, the race windows are small and the
    		// combination of features is uncommon, so it's hard to be (and remain)
    		// sure we've caught them all.
    	}
    
    	semrelease(&goroutineProfile.sema)
    	return n, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    				named++
    			}
    			if par.typ != nil {
    				typed++
    			}
    		}
    		if !p.atComma("parameter list", closing) {
    			break
    		}
    		p.next()
    	}
    
    	if len(list) == 0 {
    		return // not uncommon
    	}
    
    	// distribute parameter types (len(list) > 0)
    	if named == 0 {
    		// all unnamed => found names are type names
    		for i := 0; i < len(list); i++ {
    			par := &list[i]
    			if typ := par.name; typ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/common/common.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package common
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/component-helpers/storage/ephemeral"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 18:54:20 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-monolithic/src/common.h

    #ifndef COMMON_HEADER_${sourceIdx}_H
    #define COMMON_HEADER_${sourceIdx}_H
    
    // TODO: Actually do something in this common header
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 168 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    """Serves as a common "main" function for all the SavedModel tests.
    
    There is a fair amount of setup needed to initialize tensorflow and get it
    into a proper TF2 execution mode. This hides that boilerplate.
    """
    
    import tempfile
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 23:49:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/common/common.go

    // Copyright 2016 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.
    
    package common
    
    var X int
    
    func init() {
    	X = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 210 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/altpath/testdata/common/common.go

    // Copyright 2016 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.
    
    package common
    
    var X int
    
    func init() {
    	X = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 210 bytes
    - Viewed (0)
  8. tests/integration/pilot/mcs/common/common.go

    // limitations under the License.
    
    package common
    
    import (
    	"context"
    	"fmt"
    	"os"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/common.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package language
    
    // This file contains code common to the maketables.go and the package code.
    
    // AliasType is the type of an alias in AliasMap.
    type AliasType int8
    
    const (
    	Deprecated AliasType = iota
    	Macro
    	Legacy
    
    	AliasTypeUnknown AliasType = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 334 bytes
    - Viewed (0)
  10. tools/bug-report/pkg/common/common.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package common contains resource names, which may vary from version to version.
    package common
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    const (
    	// latestKey is an arbitrary value that represents the fallback version (master).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top