Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for cont (0.06 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

                throw new SmbException("Signature verification failed.");
            }
            return cont;
        }
    
    
        /**
         * @param request
         * @param response
         * @throws SmbException
         */
        boolean checkStatus2 ( ServerMessageBlock2 req, Response resp ) throws SmbException {
            boolean cont = false;
            switch ( resp.getErrorCode() ) {
            case NtStatus.NT_STATUS_OK:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers.go

    			}
    		}
    	}
    	return result, statsFunc
    }
    
    func getSysContainer(sysContainers []statsapi.ContainerStats, name string) (*statsapi.ContainerStats, error) {
    	for _, cont := range sysContainers {
    		if cont.Name == name {
    			return &cont, nil
    		}
    	}
    	return nil, fmt.Errorf("system container %q not found in metrics", name)
    }
    
    // thresholdsMet returns the set of thresholds that were met independent of grace period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    	}
    
    	resourceACountGot, err := store.Count(resourceA)
    	if err != nil {
    		t.Fatalf("store.Count failed: %v", err)
    	}
    
    	// count for resourceA should not include the objects for resourceB
    	// even though resourceA is a prefix of resourceB.
    	if int64(resourceACountExpected) != resourceACountGot {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	outputDir = flag.String("test.outputdir", "", "write profiles to `dir`")
    	// Report as tests are run; default is silent for success.
    	flag.Var(&chatty, "test.v", "verbose: print additional output")
    	count = flag.Uint("test.count", 1, "run tests and benchmarks `n` times")
    	coverProfile = flag.String("test.coverprofile", "", "write a coverage profile to `file`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager_test.go

    		),
    	)
    	testManager.podDevices.insert("pod1", "con2", resourceName1,
    		constructDevices([]string{"dev3"}),
    		newContainerAllocateResponse(
    			withDevices(map[string]string{"/dev/r1dev3": "/dev/r1dev3"}),
    			withMounts(map[string]string{"/home/r1lib1": "/usr/r1lib1"}),
    		),
    	)
    	testManager.podDevices.insert("pod2", "con1", resourceName1,
    		constructDevices([]string{"dev4"}),
    		newContainerAllocateResponse(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def conf = conf("conf")
            when:
            def dep = conf.getTaskDependencyFromProjectDependency(false, "bar") as TasksFromDependentProjects
            then:
            dep.taskName == "bar"
            dep.configurationName == "conf"
        }
    
        def "mutations are prohibited after resolution"() {
            def conf = conf("conf")
            resolver.resolveGraph(conf) >> graphResolved()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
    func (c *Conn) SetDeadline(t time.Time) error {
    	return c.conn.SetDeadline(t)
    }
    
    // SetReadDeadline sets the read deadline on the underlying connection.
    // A zero value for t means [Conn.Read] will not time out.
    func (c *Conn) SetReadDeadline(t time.Time) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis_test.cc

    struct DependentInductionVar {
      Output induction_var;
      ops::Switch latch;
    };
    
    DependentInductionVar CreateDependentLoopInvariantValue(
        const Scope& root, const string& prefix, const string& frame_name,
        const Output& loop_cond, const Output& value) {
      Output enter_value = ops::internal::Enter(root.WithOpName(prefix + "/enter"),
                                                value, frame_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix_test.go

    	if err != nil {
    		return nil, err
    	}
    	conf := &resolvConfTest{
    		dir:            dir,
    		path:           path.Join(dir, "resolv.conf"),
    		resolverConfig: &resolvConf,
    	}
    	conf.initOnce.Do(conf.init)
    	return conf, nil
    }
    
    func (conf *resolvConfTest) write(lines []string) error {
    	f, err := os.OpenFile(conf.path, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0600)
    	if err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        url '${mavenRepo.uri}'
                    }
                }
    
                configurations {
                    conf
                }
    
                dependencies {
                    conf 'org.test:excludingRoot:1.0'
                    conf 'org.test:root2:1.0'
                    conf 'org.test:root3:1.0'
    
                    components.all(AlignGroup.class)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top