Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 232 for _notoc (0.24 sec)

  1. test/typeparam/graph.go

    // of edges. An edge connects two nodes. Both nodes and edges must be
    // comparable. This is an undirected simple graph.
    type _Graph[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]] struct {
    	nodes []_Node
    }
    
    // _NodeC is the constraints on a node in a graph, given the _Edge type.
    type _NodeC[_Edge any] interface {
    	comparable
    	Edges() []_Edge
    }
    
    // _EdgeC is the constraints on an edge in a graph, given the _Node type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/README.md

    and strip off the leading four-byte kubernetes protobuf header to get standard protobuf that can be decoded:
    
    ```sh
    cd staging/src/k8s.io/api/testdata/v1.14.0/
    diff -u \
      <(tail -c +5 admission.k8s.io.v1beta1.AdmissionReview.pb | protoc --decode_raw) \
      <(tail -c +5 admission.k8s.io.v1beta1.AdmissionReview.after_roundtrip.pb | protoc --decode_raw)
    ```
    
    > ```diff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_var_init_order.txt

    import (
    	"flag"
    )
    
    var (
    	fooFlag = flag.String("foo", "", "this should be ok")
    	foo     = flag.Lookup("foo")
    
    	barFlag = flag.String("bar", "", "this should be also ok, but is "+notOK()+".")
    	bar     = flag.Lookup("bar")
    )
    
    func notOK() string {
    	return "not OK"
    }
    
    -- m_test.go --
    
    package main
    
    import (
    	"testing"
    )
    
    func TestFoo(t *testing.T) {
    	if foo == nil {
    		t.Fatal()
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 18:14:15 UTC 2022
    - 784 bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/MessageTest.groovy

        }
    
        def "can transport broken multicause exception"() {
            def ok = new RuntimeException("broken 1")
            def notOk = new ExceptionWithNonSerializableField("broken 2", new RuntimeException("broken 3"))
            def original = new MultiCauseExceptionWithExceptionField("original", notOk, [ok, notOk])
    
            when:
            def transported = transport(original)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. .idea/dictionaries/geevee.xml

    <component name="ProjectDictionaryState">
      <dictionary name="geevee">
        <words>
          <w>builtins</w>
          <w>callables</w>
          <w>klass</w>
          <w>proto</w>
          <w>protoc</w>
          <w>protos</w>
          <w>ubuntu</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jul 08 11:27:39 UTC 2015
    - 267 bytes
    - Viewed (0)
  6. pkg/test/config/mock_config.pb.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Code generated by protoc-gen-go. DO NOT EDIT.
    // versions:
    // 	protoc-gen-go v1.27.1
    // 	protoc        v3.18.0
    // source: pkg/test/config/mock_config.proto
    
    // Basic config resource consisting
    // of a set of key-value pairs
    
    package config
    
    import (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    			for _, spec := range d.Specs {
    				if spec, ok := spec.(*ast.ValueSpec); ok {
    					b.add(spec)
    				}
    			}
    		}
    
    	case *ast.LabeledStmt:
    		label = b.labeledBlock(s.Label, s)
    		b.jump(label._goto)
    		b.current = label._goto
    		_s = s.Stmt
    		goto start // effectively: tailcall stmt(g, s.Stmt, label)
    
    	case *ast.ReturnStmt:
    		b.add(s)
    		b.current = b.newBlock(KindUnreachable, s)
    
    	case *ast.BranchStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. test/slicecap.go

    	bytes = []byte{1, 2, 3, 4, 5}
    	ints  = []int32{1, 2, 3, 4, 5}
    
    	five = 5
    
    	ok = true
    )
    
    func notOK() {
    	if ok {
    		println("BUG:")
    		ok = false
    	}
    }
    
    func checkString(desc, s string) {
    	p1 := *(*uintptr)(unsafe.Pointer(&s))
    	p2 := *(*uintptr)(unsafe.Pointer(&hello))
    	if p1-p2 >= 5 {
    		notOK()
    		println("string", desc, "has invalid base")
    	}
    }
    
    func checkBytes(desc string, s []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

        def "report with problem loads successfully"() {
            given:
            buildFile '''
                tasks.register('notOk') {
                    doLast { println project.name }
                }
            '''
    
            when:
            configurationCacheFails 'notOk'
    
            then:
            def configurationCacheReport = resolveConfigurationCacheReport(testDirectory, failure.error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/tokens.go

    	_Continue    // continue
    	_Default     // default
    	_Defer       // defer
    	_Else        // else
    	_Fallthrough // fallthrough
    	_For         // for
    	_Func        // func
    	_Go          // go
    	_Goto        // goto
    	_If          // if
    	_Import      // import
    	_Interface   // interface
    	_Map         // map
    	_Package     // package
    	_Range       // range
    	_Return      // return
    	_Select      // select
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top