Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for dropm (0.08 sec)

  1. src/runtime/asm_amd64.s

    	//    since then we skip dropm to reuse the m in the first call.
    	MOVQ	savedm-8(SP), BX
    	CMPQ	BX, $0
    	JNE	done
    
    	// Skip dropm to reuse it in the next call, when a pthread key has been created.
    	MOVQ	_cgo_pthread_key_created(SB), AX
    	// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
    	CMPQ	AX, $0
    	JEQ	dropm
    	CMPQ	(AX), $0
    	JNE	done
    
    dropm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    		),
    		Comment: ptr.To("Reject traffic to invalid ports of ClusterIPs"),
    	})
    
    	// drop traffic to unallocated ClusterIPs.
    	if len(proxier.serviceCIDRs) > 0 {
    		tx.Add(&knftables.Rule{
    			Chain: clusterIPsCheckChain,
    			Rule: knftables.Concat(
    				ipX, "daddr", "{", proxier.serviceCIDRs, "}",
    				"drop",
    			),
    			Comment: ptr.To("Drop traffic to unallocated ClusterIPs"),
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    		t.Fatalf("Failed to drop view, got %v", err)
    	}
    
    	query = DB.Model(&User{}).Where("age > ?", 20)
    	if err := DB.Migrator().CreateView("users_view", gorm.ViewOption{Query: query}); err != nil {
    		t.Fatalf("Failed to crate view, got %v", err)
    	}
    	if err := DB.Migrator().DropView("users_view"); err != nil {
    		t.Fatalf("Failed to drop view, got %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    					"-m", protocol, "-p", protocol,
    					"-d", lbip.String(),
    					"--dport", strconv.Itoa(svcInfo.Port()),
    					"-j", "DROP")
    			}
    		}
    		if !hasExternalEndpoints {
    			// Either no endpoints at all (REJECT) or no endpoints for
    			// external traffic (DROP anything that didn't get short-circuited
    			// by the EXT chain.)
    			for _, lbip := range svcInfo.LoadBalancerVIPs() {
    				filterRules.Write(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top