Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _privates (0.25 sec)

  1. src/runtime/rt0_plan9_amd64.s

    #include "textflag.h"
    
    TEXT _rt0_amd64_plan9(SB),NOSPLIT,$24
    	MOVQ	AX, _tos(SB)
    	LEAQ	16(SP), AX
    	MOVQ	AX, _privates(SB)
    	MOVL	$1, _nprivates(SB)
    	MOVL	inargc-8(FP), DI
    	LEAQ	inargv+0(FP), SI
    	MOVQ	$runtime·rt0_go(SB), AX
    	JMP	AX
    
    GLOBL _tos(SB), NOPTR, $8
    GLOBL _privates(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 18:11:17 UTC 2015
    - 481 bytes
    - Viewed (0)
  2. src/runtime/rt0_plan9_386.s

    TEXT _rt0_386_plan9(SB),NOSPLIT,$12
    	MOVL	AX, _tos(SB)
    	LEAL	8(SP), AX
    	MOVL	AX, _privates(SB)
    	MOVL	$1, _nprivates(SB)
    	CALL	runtime·asminit(SB)
    	MOVL	inargc-4(FP), AX
    	MOVL	AX, 0(SP)
    	LEAL	inargv+0(FP), AX
    	MOVL	AX, 4(SP)
    	JMP	runtime·rt0_go(SB)
    
    GLOBL _tos(SB), NOPTR, $4
    GLOBL _privates(SB), NOPTR, $4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 523 bytes
    - Viewed (0)
  3. test/interface/private.dir/private1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Imported by private.go, which should not be able to see the private method.
    
    package p
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 389 bytes
    - Viewed (0)
  4. test/interface/private.go

    Rémy Oudompheng <******@****.***> 1349901327 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 285 bytes
    - Viewed (0)
  5. tests/integration/security/fuzz/fuzzers/jwt_tool/sample-RSA-private.pem

    Yangmin Zhu <******@****.***> 1624305961 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. releasenotes/notes/bug-fix-virtualservice-visibilty-private.yaml

    Rajat Sharma <******@****.***> 1672759006 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 15:16:46 UTC 2023
    - 194 bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	switch ctxt.Headtype {
    	case objabi.Hplan9:
    		plan9privates = ctxt.Lookup("_privates")
    	}
    
    	for i := range avxOptab {
    		c := avxOptab[i].as
    		if opindex[c&obj.AMask] != nil {
    			ctxt.Diag("phase error in avxOptab: %d (%v)", i, c)
    		}
    		opindex[c&obj.AMask] = &avxOptab[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. test/interface/private.dir/prog.go

    // Does not compile.
    
    package main
    
    import "./private1"
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() {}
    
    func main() {
    	var x Exported
    	x = new(Implementation)
    	x.private()
    
    	var px p.Exported
    	px = p.X
    
    	px.private()			// ERROR "private"
    
    	px = new(Implementation)	// ERROR "private"
    
    	x = px				// ERROR "private"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 608 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            }
        }
    }
    '''
        }
    
        private TestFile writeTransformerTask() {
            buildFile << '''
    import org.gradle.api.*
    import org.gradle.api.tasks.*
    
    public class TransformerTask extends DefaultTask {
        private File inputFile
        private File outputFile
        private String format = "[%s]"
    
        @InputFile
        public File getInputFile() {
            return inputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_quantized_functions.mlir

      }
    }
    
    // CHECK-NOT: func private @internal_rescale_fn
    // CHECK-NOT: func private @internal_relu_fn
    // CHECK-NOT: func private @internal_conv2d_fn
    // CHECK-NOT: func private @internal_matmul_fn
    // CHECK: func private @quantized_conv2d_with_bias_fn
    // CHECK-SAME: tf_quant.quantized_ops = ["Conv2D", "BiasAdd"]
    // CHECK: func private @quantized_conv2d_with_bias_and_relu_fn
    // CHECK: func private @quantized_conv2d_with_bias_and_relu6_fn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top