Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 343 for AdTest (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopySpecIntegrationSpec.groovy

                    from 'src'
                    into 'dest'
                    filesMatching(['**/ignore/**', '**/sub/**']) {
                        name = "matched\${name}"
                    }
                }
            """.stripIndent()
    
            when:
            succeeds 'copy'
    
            then:
            file('dest/one/ignore/matchedbad.file').exists()
            file('dest/two/ignore/matchedbad.file').exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads_test.go

    				Http: []*networking.HTTPRoute{{
    					Name: "dest-foo",
    					Route: []*networking.HTTPRouteDestination{{
    						Destination: &networking.Destination{
    							Host: dest,
    						},
    					}},
    				}},
    				ExportTo: nil,
    			},
    		}); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	updateDelegateVirtualService := func(i int, dest string) {
    		if _, err := s.Store().Update(config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/CharEscaper.java

            dest = growBuffer(dest, destIndex, destSize);
          }
    
          // If we have skipped any characters, we need to copy them now.
          if (charsSkipped > 0) {
            s.getChars(lastEscape, index, dest, destIndex);
            destIndex += charsSkipped;
          }
    
          // Copy the replacement string into the dest buffer as needed.
          if (rlen > 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/configurationCacheProblemsKotlin.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/copy.go

    	"k8s.io/klog/v2"
    )
    
    // CopyFile copies a file from src to dest.
    func CopyFile(src, dest string) error {
    	sourceFileInfo, err := os.Stat(src)
    	if err != nil {
    		return err
    	}
    
    	sourceFile, err := os.Open(src)
    	if err != nil {
    		return err
    	}
    	defer func() {
    		_ = sourceFile.Close()
    	}()
    
    	destFile, err := os.OpenFile(dest, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, sourceFileInfo.Mode())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 01:42:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. pkg/test/loadbalancersim/loadbalancer/weight.go

    	return func(src *mesh2.Client, dest *mesh2.Node) *WeightedConnection {
    		return &WeightedConnection{
    			Connection: src.Mesh().NewConnection(src, dest),
    			Weight:     1,
    		}
    	}
    }
    
    func PriorityWeightedConnectionFactory(selectPriority PrioritySelector, priorityWeightMap map[uint32]uint32) WeightedConnectionFactory {
    	return func(src *mesh2.Client, dest *mesh2.Node) *WeightedConnection {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

        }
    
        static void writeULong(byte[] dest, int offset, int ulong) {
            dest[offset] = (byte) (ulong & 0xff);
            dest[offset + 1] = (byte) (ulong >> 8 & 0xff);
            dest[offset + 2] = (byte) (ulong >> 16 & 0xff);
            dest[offset + 3] = (byte) (ulong >> 24 & 0xff);
        }
    
        static void writeUShort(byte[] dest, int offset, int ushort) {
            dest[offset] = (byte) (ushort & 0xff);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/fake.go

    func (fake *FakeInterface) ClearEntriesForNAT(origin, dest string, protocol v1.Protocol) error {
    	if protocol != v1.ProtocolUDP {
    		return fmt.Errorf("FakeInterface currently only supports UDP")
    	}
    	if previous, exists := fake.ClearedNATs[origin]; exists && previous != dest {
    		return fmt.Errorf("ClearEntriesForNAT called with same origin (%s), different destination (%s / %s)", origin, previous, dest)
    	}
    
    	fake.ClearedNATs[origin] = dest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 04:15:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. finisher_api.go

    		})
    	}
    	tx.Statement.Dest = dest
    	return tx.callbacks.Query().Execute(tx)
    }
    
    func (db *DB) ScanRows(rows *sql.Rows, dest interface{}) error {
    	tx := db.getInstance()
    	if err := tx.Statement.Parse(dest); !errors.Is(err, schema.ErrUnsupportedDataType) {
    		tx.AddError(err)
    	}
    	tx.Statement.Dest = dest
    	tx.Statement.ReflectValue = reflect.ValueOf(dest)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	}
    	return destp
    }
    
    //sys	getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error)
    
    func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
    	return getxattr(path, attr, xattrPointer(dest), len(dest), 0, 0)
    }
    
    func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top