Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for targeting (0.22 sec)

  1. internal/event/target/postgresql.go

    	initOnce once.Init
    
    	id         event.TargetID
    	args       PostgreSQLArgs
    	updateStmt *sql.Stmt
    	deleteStmt *sql.Stmt
    	insertStmt *sql.Stmt
    	db         *sql.DB
    	store      store.Store[event.Event]
    	firstPing  bool
    	connString string
    	loggerOnce logger.LogOnce
    	quitCh     chan struct{}
    }
    
    // ID - returns target ID.
    func (target *PostgreSQLTarget) ID() event.TargetID {
    	return target.id
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. internal/event/target/nats.go

    type NATSTarget struct {
    	initOnce once.Init
    
    	id         event.TargetID
    	args       NATSArgs
    	natsConn   *nats.Conn
    	stanConn   stan.Conn
    	jstream    nats.JetStream
    	store      store.Store[event.Event]
    	loggerOnce logger.LogOnce
    	quitCh     chan struct{}
    }
    
    // ID - returns target ID.
    func (target *NATSTarget) ID() event.TargetID {
    	return target.id
    }
    
    // Name - returns the Name of the target.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                    return false;
                }
                Element element = document.createElement("link");
                String targetId = String.format("%s.%s", classMetaData.getClassName(), href.substring(1));
                element.setAttribute("linkend", targetId);
                nodes.push(element);
                return true;
            }
    
            @Override
            public void onEndElement(String element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  4. src/debug/gosym/pclntab.go

    // but we have no idea whether we're using arm or not. This only
    // matters in the old (pre-Go 1.2) symbol table format, so it's not worth
    // fixing.
    const oldQuantum = 1
    
    func (t *LineTable) parse(targetPC uint64, targetLine int) (b []byte, pc uint64, line int) {
    	// The PC/line table can be thought of as a sequence of
    	//  <pc update>* <line update>
    	// batches. Each update batch results in a (pc, line) pair,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	}
    
    	if nsTarget != nil && lc.SecurityContext.NamespaceOptions.Pid == runtimeapi.NamespaceMode_CONTAINER {
    		lc.SecurityContext.NamespaceOptions.Pid = runtimeapi.NamespaceMode_TARGET
    		lc.SecurityContext.NamespaceOptions.TargetId = nsTarget.ID
    	}
    
    	return lc, nil
    }
    
    // generateLinuxContainerResources generates linux container resources config for runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/go/printer/testdata/declarations.input

    	z bool) {
    }
    func _(x int,	// comment
    	y float,	// comment
    	z bool) {
    }
    
    
    // properly indent multi-line signatures
    func ManageStatus(in <-chan *Status, req <-chan Request,
    stat chan<- *TargetInfo,
    TargetHistorySize int) {
    }
    
    func MultiLineSignature0(
    a, b, c int,
    ) {}
    
    func MultiLineSignature1(
    a, b, c int,
    u, v, w float,
    ) {}
    
    func MultiLineSignature2(
    a, b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  7. src/go/printer/testdata/declarations.golden

    	z bool) {
    }
    func _(x int,	// comment
    	y float,	// comment
    	z bool) {
    }
    
    // properly indent multi-line signatures
    func ManageStatus(in <-chan *Status, req <-chan Request,
    	stat chan<- *TargetInfo,
    	TargetHistorySize int) {
    }
    
    func MultiLineSignature0(
    	a, b, c int,
    ) {
    }
    
    func MultiLineSignature1(
    	a, b, c int,
    	u, v, w float,
    ) {
    }
    
    func MultiLineSignature2(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/Type3Message.java

                byte[] ntlmClientChallengeInfo = type2.getTargetInformation();
                List<AvPair> avPairs = ntlmClientChallengeInfo != null ? AvPairs.decode(ntlmClientChallengeInfo) : null;
    
                // if targetInfo has an MsvAvTimestamp
                // client should not send LmChallengeResponse
                boolean haveTimestamp = AvPairs.contains(avPairs, AvPair.MsvAvTimestamp);
                if ( !haveTimestamp ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Therefore, you may face situations where you want to substitute a platform dependency with a regular dependency, or the other way around.
    
    [[sec:substitution_with_attributes]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    						{Name: "test"},
    					},
    				},
    			},
    			&kubecontainer.ContainerID{Type: "docker", ID: "really-long-id-string"},
    			&runtimeapi.NamespaceOption{
    				Pid:      runtimeapi.NamespaceMode_TARGET,
    				TargetId: "really-long-id-string",
    			},
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			got, err := m.generateLinuxContainerConfig(&tc.pod.Spec.Containers[0], tc.pod, nil, "", tc.target, false)
    			assert.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top