Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 317 for dropg (0.04 sec)

  1. src/runtime/os_netbsd.go

    	gp.m.newSigstack = true
    
    	minitSignalMask()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	// Don't clear procid, it is used by locking (semawake), and locking
    	// must continue working after unminit.
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. samples/addons/prometheus.yaml

          - role: endpoints
          relabel_configs:
          - action: keep
            regex: true
            source_labels:
            - __meta_kubernetes_service_annotation_prometheus_io_scrape
          - action: drop
            regex: true
            source_labels:
            - __meta_kubernetes_service_annotation_prometheus_io_scrape_slow
          - action: replace
            regex: (https?)
            source_labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

            memory: 70Mi
        securityContext:
          allowPrivilegeEscalation: false
          readOnlyRootFilesystem: true
          runAsGroup: 1001
          capabilities:
            add:
            - NET_BIND_SERVICE
            drop:
            - ALL
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  4. migrator/migrator.go

    			return err
    		}
    	}
    	return nil
    }
    
    // DropTable drop table for values
    func (m Migrator) DropTable(values ...interface{}) error {
    	values = m.ReorderModels(values, false)
    	for i := len(values) - 1; i >= 0; i-- {
    		tx := m.DB.Session(&gorm.Session{})
    		if err := m.RunWithValue(values[i], func(stmt *gorm.Statement) error {
    			return tx.Exec("DROP TABLE IF EXISTS ?", m.CurrentTable(stmt)).Error
    		}); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/list.yaml.injected

                  memory: 1Gi
                requests:
                  cpu: 100m
                  memory: 128Mi
              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
                  - ALL
                privileged: false
                readOnlyRootFilesystem: true
                runAsGroup: 1337
                runAsNonRoot: true
                runAsUser: 1337
              startupProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/runtime/os_darwin.go

    	getg().m.procid = uint64(pthread_self())
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	// iOS does not support alternate signal stack.
    	// See minit.
    	if !(GOOS == "ios" && GOARCH == "arm64") {
    		unminitSignals()
    	}
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. src/runtime/asm_mips64x.s

    	//    since then we skip dropm to reuse the m in the first call.
    	MOVV	savedm-8(SP), R3
    	BNE	R3, droppedm
    
    	// Skip dropm to reuse it in the next call, when a pthread key has been created.
    	MOVV	_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
    	MOVV	(R3), R3
    	BNE	R3, droppedm
    
    dropm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. pkg/api/persistentvolumeclaim/util_test.go

    		},
    	}
    
    	for testName, test := range tests {
    		t.Run(testName, func(t *testing.T) {
    			EnforceDataSourceBackwardsCompatibility(&test.spec, nil)
    			if test.spec.DataSource != test.want {
    				t.Errorf("expected drop datasource condition was not met, test: %s, spec: %v, expected: %v", testName, test.spec, test.want)
    			}
    
    		})
    	}
    }
    
    var (
    	coreGroup    = ""
    	snapGroup    = "snapshot.storage.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

                val dehydratedScriptModels = scriptModels.mapValues { (_, model) ->
                    StandardKotlinDslScriptModel(
                        model.classPath.drop(commonClassPath.size),
                        model.sourcePath.drop(commonSourcePath.size),
                        model.implicitImports.drop(commonImplicitImports.size),
                        model.editorReports,
                        model.exceptions
                    )
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

          - null
          - a
          drop:
        threeWay:
          foo:
          - 1
          - false
          - b: 1
          drop:
          - null
        result:
          foo:
          - 1
          - false
          - b: 1
          drop:
          - null
          bar:
          - c
          - null
          - null
          - a
    `)
    
    func TestCreateThreeWayJSONMergePatch(t *testing.T) {
    	tc := JSONMergePatchTestCases{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top