Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for synthesized (0.68 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/runtime/profbuf_test.go

    	})
    
    	t.Run("ReadAfterOverflow1", func(t *testing.T) {
    		// overflow record synthesized by write
    		b := NewProfBuf(2, 16, 5)
    		write(t, b, unsafe.Pointer(&myTags[0]), 1, []uint64{2, 3}, []uintptr{4, 5, 6, 7, 8, 9})           // uses 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 20:04:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    For the default test suite named 'test', no additional configuration is necessary.  The aggregated reports and their backing tasks of type `TestReport` are synthesized based on the test suites existing in the `application` project.  Test suites having identical `testType` properties will be aggregated.
    
    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    For the default test suite named 'test', no additional configuration is necessary.  The aggregated reports and their backing tasks of type `JacocoReport` are synthesized based on the test suites existing in the `application` project.  Test suites having identical `testType` properties will be aggregated.
    
    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    The user must also declare one or more reports of type `JacocoCoverageReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the coverage data.  A `JacocoReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of the `jacocoAggregation` configuration.
    
    Running the tests and generate the report:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    The user must also declare one or more reports of type `AggregateTestReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the test data.  A `TestReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of the `testReportAggregation` configuration.
    
    Run the tests and generate the report:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGClassIntegrationTest.groovy

            containsEvent(FINISHED, DefaultTestClassDescriptor, 'TestSuite > FullTest > org.company.SystemOutTest')
            containsEvent(FINISHED, DefaultTestSuiteDescriptor, 'TestSuite > FullTest')
        }
    
        def "synthesized events for broken configuration methods reference test class descriptors"() {
            given:
            file("src/test/java/org/company/TestWithBrokenSetupMethod.java") << """
                package org.company;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top