Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 125 for Style (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    This will create a tree of all the files and directories in that base directory (but not the base directory itself).
    The following example demonstrates how to use this method and how to filter the files and directories using Ant-style patterns:
    
    ====
    include::sample[dir="snippets/files/fileTrees/kotlin",files="build.gradle.kts[tags=define]"]
    include::sample[dir="snippets/files/fileTrees/groovy",files="build.gradle[tags=define]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	NoClones
    
    	// The NoRust option disables demangling of old-style Rust
    	// mangled names, which can be confused with C++ style mangled
    	// names. New style Rust mangled names are still recognized.
    	NoRust
    
    	// The Verbose option turns on more verbose demangling.
    	Verbose
    
    	// LLVMStyle tries to translate an AST to a string in the
    	// style of the LLVM demangler. This does not affect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    //
    // This controller is intentionally written in a very verbose style. You will
    // notice:
    //
    // 1. Every 'if' statement has a matching 'else' (exception: simple error
    //    checks for a client API call)
    // 2. Things that may seem obvious are commented explicitly
    //
    // We call this style 'space shuttle style'. Space shuttle style is meant to
    // ensure that every branch and condition is considered and accounted for -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. configure.py

        else:
          print('{} is not executable.  Is it the python binary?'.format(
              python_bin_path))
        environ_cp['PYTHON_BIN_PATH'] = ''
    
      # Convert python path to Windows style before checking lib and version
      if is_windows() or is_cygwin():
        python_bin_path = cygpath(python_bin_path)
    
      # Get PYTHON_LIB_PATH
      python_lib_path = environ_cp.get('PYTHON_LIB_PATH')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //     a C-style array.
    // ValuesIn(const Container& container)
    //   - returns a generator producing sequences with elements from
    //     an STL-style container.
    // ValuesIn(Iterator begin, Iterator end)
    //   - returns a generator producing sequences with elements from
    //     a range [begin, end) defined by a pair of STL-style iterators. These
    //     iterators can also be plain C pointers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //     a C-style array.
    // ValuesIn(const Container& container)
    //   - returns a generator producing sequences with elements from
    //     an STL-style container.
    // ValuesIn(Iterator begin, Iterator end)
    //   - returns a generator producing sequences with elements from
    //     a range [begin, end) defined by a pair of STL-style iterators. These
    //     iterators can also be plain C pointers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    // Copyright 2020 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 netip_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"net"
    	. "net/netip"
    	"reflect"
    	"slices"
    	"strings"
    	"testing"
    	"unique"
    )
    
    var long = flag.Bool("long", false, "run long tests")
    
    type uint128 = Uint128
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    type Patch struct{}
    
    // Note:
    // There are two different styles of label selectors used in versioned types:
    // an older style which is represented as just a string in versioned types, and a
    // newer style that is structured.  LabelSelector is an internal representation for the
    // latter style.
    
    // A label selector is a label query over a set of resources. The result of matchLabels and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. src/go/types/expr.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.
    
    // This file implements typechecking of expressions.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/internal/typeparams"
    	"go/token"
    	. "internal/types/errors"
    	"strings"
    )
    
    /*
    Basic algorithm:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    // Copyright 2009 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 parser implements a parser for Go source files. Input may be
    // provided in a variety of forms (see the various Parse* functions); the
    // output is an abstract syntax tree (AST) representing the Go source. The
    // parser is invoked through one of the Parse* functions.
    
    package parser
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top