Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 287 for dropg (0.04 sec)

  1. pkg/api/pod/util.go

    				c.SecurityContext.AppArmorProfile = nil
    			}
    			return true
    		})
    	}
    
    	// If the feature is disabled and not in use, drop the hostUsers field.
    	if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesSupport) && !hostUsersInUse(oldPodSpec) {
    		// Drop the field in podSpec only if SecurityContext is not nil.
    		// If it is nil, there is no need to set hostUsers=nil (it will be nil too).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_dataclasses/test_tutorial003.py

            "/authors/foo/items/",
            json=[{"name": "Bar"}, {"name": "Baz", "description": "Drop the Baz"}],
        )
        assert response.status_code == 200
        assert response.json() == {
            "name": "foo",
            "items": [
                {"name": "Bar", "description": None},
                {"name": "Baz", "description": "Drop the Baz"},
            ],
        }
    
    
    def test_get_authors():
        response = client.get("/authors/")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

                return@collectDescendantsOfType false
            }
    
            // Parameter type check
            method.parameterTypes
                .asSequence()
                // Drop the receiver if present
                .drop(if (extensionCandidate) 1 else 0)
                .withIndex()
                .all<IndexedValue<CtClass>> {
                    val ktParamType = ktFunction.valueParameters[it.index].typeReference!!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            if (tccl != null) {
                try {
                    return tccl.loadClass(name);
                } catch (final Exception e) {
                    // drop through...
                } catch (final LinkageError e) {
                    // drop through...
                }
            }
    
            // assume custom type is in same class space as default
            final ClassLoader peer = defaultClazz.getClassLoader();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/runtime/os_freebsd.go

    		st := stackt{ss_flags: _SS_DISABLE}
    		sigaltstack(&st, nil)
    	}
    
    	minitSignals()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. src/runtime/asm_loong64.s

    	//    since then we skip dropm to resue the m in the first call.
    	MOVV	savedm-8(SP), R12
    	BNE	R12, droppedm
    
    	// Skip dropm to reuse it in the next call, when a pthread key has been created.
    	MOVV	_cgo_pthread_key_created(SB), R12
    	// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
    	BEQ	R12, dropm
    	MOVV    (R12), R12
    	BNE	R12, droppedm
    
    dropm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/runtime/asm_mipsx.s

    	//    since then we skip dropm to reuse the m in the first call.
    	MOVW	savedm-4(SP), R3
    	BNE	R3, droppedm
    
    	// Skip dropm to reuse it in the next call, when a pthread key has been created.
    	MOVW	_cgo_pthread_key_created(SB), R3
    	// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
    	BEQ	R3, dropm
    	MOVW	(R3), R3
    	BNE	R3, droppedm
    
    dropm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    	//    since then we skip dropm to reuse the m in the first call.
    	MOVW	savedm-4(SP), R6
    	CMP	$0, R6
    	B.NE	done
    
    	// Skip dropm to reuse it in the next call, when a pthread key has been created.
    	MOVW	_cgo_pthread_key_created(SB), R6
    	// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
    	CMP	$0, R6
    	B.EQ	dropm
    	MOVW	(R6), R6
    	CMP	$0, R6
    	B.NE	done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. src/runtime/os3_solaris.go

    	minitSignals()
    
    	getg().m.procid = uint64(pthread_self())
    }
    
    // Called from dropm to undo the effect of an minit.
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    func mdestroy(mp *m) {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/os/exec.go

    	}
    
    	for {
    		refs := p.state.Load()
    		status := processStatus(refs & processStatusMask)
    		if status != statusOK {
    			// Both Release and successful Wait will drop the
    			// Process' persistent reference on the handle. We
    			// can't allow concurrent calls to drop the reference
    			// twice, so we use the status as a guard to ensure the
    			// reference is dropped exactly once.
    			return status
    		}
    		if refs == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top