Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for synthesized (0.7 sec)

  1. pkg/kubelet/kuberuntime/security_context.go

    	if err != nil {
    		return nil, err
    	}
    
    	// set ApparmorProfile.
    	synthesized.Apparmor, synthesized.ApparmorProfile, err = getAppArmorProfile(pod, container)
    	if err != nil {
    		return nil, err
    	}
    
    	// set RunAsUser.
    	if synthesized.RunAsUser == nil {
    		if uid != nil {
    			synthesized.RunAsUser = &runtimeapi.Int64Value{Value: *uid}
    		}
    		synthesized.RunAsUsername = username
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/testing/fstest/mapfs.go

    // represented as a map from path names (arguments to Open)
    // to information about the files or directories they represent.
    //
    // The map need not include parent directories for files contained
    // in the map; those will be synthesized if needed.
    // But a directory can still be included by setting the [MapFile.Mode]'s [fs.ModeDir] bit;
    // this may be necessary for detailed control over the directory's [fs.FileInfo]
    // or to create an empty directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    			unknownIndex++
    		}
    		x.Inlined = inlined
    		x.Display = shortNameList(x.FullName)
    		s.Sources = append(s.Sources, x)
    		srcs[k] = len(s.Sources) - 1
    		return len(s.Sources) - 1
    	}
    
    	// Synthesized root location that will be placed at the beginning of each stack.
    	s.Sources = []StackSource{{
    		FullName: "root",
    		Display:  []string{"root"},
    		Places:   []StackSlot{},
    	}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            val signature = createSignature(symbol, resultingDescriptor) ?: return null
            if (targetDescriptor.isSynthesizedPropertyFromJavaAccessors()) {
                // FE1.0 represents synthesized properties as an extension property of the Java class. Hence we use the extension receiver as
                // the dispatch receiver and always pass null for extension receiver (because in Java there is no way to specify an extension
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/dwarfgen/dwinl.go

    			vp := varPos{
    				DeclName: v.Name,
    				DeclFile: v.DeclFile,
    				DeclLine: v.DeclLine,
    				DeclCol:  v.DeclCol,
    			}
    			synthesized := strings.HasPrefix(v.Name, "~") || v.Name == "_"
    			if idx, found := m[vp]; found {
    				v.ChildIndex = int32(idx)
    				v.IsInAbstract = !synthesized
    			} else {
    				// Variable can't be found in the pre-inline dcl list.
    				// In the top-level case (ii=0) this can happen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

             * We only add getters for `public static final String` constants. This is because in
             * the converted classes only contain these kinds of constants.
             *
             * This is a mapping of the synthesized accessor name to the name of the backing field,
             * i.e. "getFOO" -> "FOO"
             */
            private Map<String, String> missingStaticStringConstantGetters = new HashMap<String, String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    				comments = append(comments, d.Doc)
    			}
    		}
    	}
    
    	// Synthesize import declaration.
    	importDecl := &ast.GenDecl{
    		Tok:    token.IMPORT,
    		Lparen: 1, // Need non-zero Lparen and Rparen so that printer
    		Rparen: 1, // treats this as a factored import.
    	}
    	importDecl.Specs = append(namedImports, blankImports...)
    
    	// Synthesize main function.
    	funcDecl := &ast.FuncDecl{
    		Name: ast.NewIdent("main"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    include::sample[dir="snippets/testing/test-suite-configure-source-dir/groovy",files="build.gradle[tags=configure-source-dir]"]
    ====
    
    <1> Declare and configure a suite named `integrationTest`.  The `SourceSet` and synthesized `Test` tasks will be based on this name.
    <2> Configure the `sources` of the test suite.
    <3> Configure the `java` SourceDirectorySet of the test suite.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is CallableMemberDescriptor -> when (kind) {
                CallableMemberDescriptor.Kind.DELEGATION -> return KaSymbolOrigin.DELEGATED
                CallableMemberDescriptor.Kind.SYNTHESIZED -> return KaSymbolOrigin.SOURCE_MEMBER_GENERATED
                else -> {
                    if (isDynamic()) {
                        return KaSymbolOrigin.JS_DYNAMIC
                    }
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. src/runtime/profbuf.go

    // record into the buffer. If the reader is called to read data and finds
    // that the output buffer is empty but that there is a pending overflow
    // entry, the reader will return a synthesized record for the pending
    // overflow entry.
    //
    // Only the writer can create or add to a pending overflow entry, but
    // either the reader or the writer can clear the pending overflow entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top