Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 587 for admitted (0.19 sec)

  1. src/runtime/coverage/coverage.go

    // license that can be found in the LICENSE file.
    
    package coverage
    
    import (
    	"internal/coverage/cfile"
    	"io"
    )
    
    // initHook is invoked from main.init in programs built with -cover.
    // The call is emitted by the compiler.
    func initHook(istest bool) {
    	cfile.InitHook(istest)
    }
    
    // WriteMetaDir writes a coverage meta-data file for the currently
    // running program to the directory specified in 'dir'. An error will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/graph/DirectedGraphRendererTest.groovy

            then:
            output.value == """[1]
    {info}+--- {normal}[2]
    {info}|    \\--- {normal}[4]
    {info}\\--- {normal}[3]
    {info}     \\--- {normal}[2] (*)
    
    {info}(*) - details omitted (listed previously){normal}
    """
        }
    
        def "renders a graph that contains cycles"() {
            given:
            1 * graph.getNodeValues("1", _, _) >> { args -> args[2] << "2"; args[2] << "3" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// check for omitted fields
    	zb0001Len := uint32(1)
    	var zb0001Mask uint8 /* 1 bits */
    	_ = zb0001Mask
    	if z.ObjectV2 == nil {
    		zb0001Len--
    		zb0001Mask |= 0x1
    	}
    	// variable map header, size zb0001Len
    	o = append(o, 0x80|uint8(zb0001Len))
    	if zb0001Len == 0 {
    		return
    	}
    	if (zb0001Mask & 0x1) == 0 { // if not omitted
    		// string "V2Obj"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

     * Listeners must be sure to remove themselves if they want to only listen for a single build.
     *
     * Listeners are notified in registration order.
     * Started and progress notifications are emitted in registration order,
     * while finished notifications are emitted in reverse registration order.
     *
     * Listeners will not receive progress notifications for events before they have received
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/aggregation/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    includeBuild('../admin-feature')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyFactory.java

         *
         * <p>
         * Classifier and extension may each separately be omitted. Version may be omitted if there is no classifier.
         * </p>
         *
         * @param dependencyNotation the dependency notation
         * @return the new dependency
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 06 21:43:58 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_retract_rationale.txt

    cmp stdout multiline
    
    
    # 'go get' should omit long messages.
    go get example.com/retract/rationale@v1.0.0-long
    stderr '^go: warning: example.com/retract/rationale@v1.0.0-long: retracted by module author: \(message omitted: too long\)'
    
    # 'go list' should show the full message.
    go list -m -retracted -f '{{.Retracted}}' example.com/retract/rationale
    stdout '^\[lo{500}ng\]$'
    
    
    # 'go get' should omit messages with unprintable characters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. test/const8.go

    // run
    
    // Copyright 2022 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.
    
    // Test that identifiers in implicit (omitted) RHS
    // expressions of constant declarations are resolved
    // in the correct context; see issues #49157, #53585.
    
    package main
    
    const X = 2
    
    func main() {
    	const (
    		A    = iota // 0
    		iota = iota // 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 18:11:31 UTC 2022
    - 727 bytes
    - Viewed (0)
  9. plugin/pkg/admission/priority/admission.go

    			return p.validatePriorityClass(a)
    		}
    		return nil
    
    	default:
    		return nil
    	}
    }
    
    // admitPod makes sure a new pod does not set spec.Priority field. It also makes sure that the PriorityClassName exists if it is provided and resolves the pod priority from the PriorityClassName.
    func (p *Plugin) admitPod(a admission.Attributes) error {
    	operation := a.GetOperation()
    	pod, ok := a.GetObject().(*core.Pod)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 9K bytes
    - Viewed (0)
  10. releasenotes/notes/36258.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - https://github.com/istio/istio/issues/36258
    releaseNotes:
      - |
        **Fixed** omitted setting .Values.sidecarInjectiorWebhook.enableNamespacesByDefault in the default revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 10 21:59:12 UTC 2021
    - 354 bytes
    - Viewed (0)
Back to top